summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-08-18egl: don't put the example/demo driver in the lib/ dirBrian Paul
2008-08-18gallium: fix vertex program output translation/mapping bugBrian Paul
In some cases, the vertex program output's semantic info didn't match up with the fragment program's input semantic info. This info is now explicitly passed into the st_translate_fragment_program() function.
2008-08-18trace: Explain how to integrate with a state tracker or winsys.José Fonseca
2008-08-18trace: Preliminary stream implementation for GDI.José Fonseca
2008-08-18trace: Use long longs to ensure covering 64bits integers.José Fonseca
2008-08-18trace: Get the trace file from the GALLIUM_TRACE option itself.José Fonseca
2008-08-18gallium: fix do_flip bug on glCopyTexImage / surface_copy() pathBrian Paul
2008-08-18gallium: Remove TGSI_CC_UN.Michal Krol
2008-08-18fix byte vs. pixel offset bug for 3D textures (see bug 17170)Henri Verbeet
2008-08-18tgsi: Update condition code vector when storing dest register.Michal Krol
2008-08-18tgsi: Saturate modifier obeys ExecMask.Michal Krol
Implement NVIDIA [-1;+1] saturate mode.
2008-08-18tgsi: Respect condition codes when storing destination register.Michal Krol
2008-08-18tgsi: Cosmetic changes.Michal Krol
2008-08-18tgsi: Add condition code (CC) register.Michal Krol
2008-08-18mesa: rearrange some code in _mesa_BindTexture() to fix error detection bug ↵Brian Paul
17173 Also, move GL_TEXTURE_RECTANGLE init code into separate function.
2008-08-18mesa: rearrange some code in _mesa_BindTexture() to fix error detection bug ↵Brian Paul
17173 Also, move GL_TEXTURE_RECTANGLE init code into separate function.
2008-08-18scons: Fix build.Michal Krol
2008-08-17r5xx: Add DDX and DDY instructions.Corbin Simpson
Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com>
2008-08-17pick first modeAlan Hourihane
2008-08-17if we can't find a mode, return first. At least we shouldAlan Hourihane
see the top left portion if we've got larger screens on other CRTC's
2008-08-17consolidate intel directories.Alan Hourihane
we now have src/gallium/winsys/drm/intel/{common,dri,egl}
2008-08-17rather than use CRTC 1 (aka LVDS), try and setup all connectors/encodersAlan Hourihane
and get the same output on all.
2008-08-17choose a 1024x768 resolutionAlan Hourihane
2008-08-17choose sane default for dri driver locationAlan Hourihane
2008-08-16bring in docs from 7.0.4 release/branchBrian Paul
2008-08-16added test for ARB GLSL extensionsCorbin Simpson
2008-08-16added glu.exports files to tarballs listBrian Paul
2008-08-16fix convolutions test to consistanty use the ARB shader extension functionsBrian Paul
Was using a mix of the ARB functions and the OpenGL 2.0 shader functions.
2008-08-16prep for 7.1 rc4Brian Paul
2008-08-16remove .txt suffix from shader source filesBrian Paul
2008-08-16mesa: added glsl/convolutions test from gallium branchBrian Paul
2008-08-16mesa: turn off 'x' bit misset on a few .h and .syn filesBrian Paul
2008-08-16mesa: import latest GLSL code from gallium-0.1 branchBrian Paul
2008-08-15fix DESTDIR omissionsHanno Böck
2008-08-15draw a tristrip ring instead of a single quadBrian Paul
2008-08-15don't need to use LOD version of texture2D() funcsBrian Paul
2008-08-15mesa: glsl: fix linking of varying vars which are arraysBrian Paul
2008-08-15gallium: in st_draw_vbo() use ctx->Current.Attrib[] values when arrays are ↵Brian Paul
missing/null fixes potential segfaults when vertex arrays are missing
2008-08-15xlib: Kill xmesa_surface.José Fonseca
A winsys cannot expect that the surfaces passed display_surface are the surfaces it created, as surface are now in generate texture views created by pipe_screen. Indeed, the fact it was working so far was mere luck. This fixes a weird tiled output when using the trace pipe driver. Winsys' surfaces should die.
2008-08-15trace: Fix typo.José Fonseca
2008-08-15python/retrace: Update frame when PIPE_FLUSH_FRAME spotted.José Fonseca
2008-08-15trace: Wrap all textures and surface created by the pipe driver.José Fonseca
That is, Unfortunately, this causes a regression in softpipe, where the output gets tyled.
2008-08-15trace: Allow multiple screens. Flush after call.José Fonseca
2008-08-15pyhon/retrace: Retrace surface contents.José Fonseca
Now capable of replaying trivial/quad-tex-2d
2008-08-15python/retrace: Keep addresses as strings.José Fonseca
To simplify looking up these in the trace.
2008-08-15trace: Several fixes.José Fonseca
2008-08-15python: Fix put/get_tile_raw bindings.José Fonseca
2008-08-15trace: Trace surface contents.José Fonseca
2008-08-15trace: Make stream a global variable.José Fonseca
This not only simplifies the code, but allows to use atexit() to ensure the log is closed when applications don't exit cleanly.
2008-08-15mesa: Issue PIPE_FLUSH_FRAME in glSwapBuffers/glFlush/glFinish.José Fonseca