Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-13 | mesa: remove some temp debug code | Brian Paul | |
2008-06-13 | mesa: check FEATURE_ARB_occlusion_query | Brian Paul | |
2008-06-13 | egl: added a debug msg | Brian Paul | |
2008-06-13 | r300/r500: Separate fragprog compiler structures | Nicolai Haehnle | |
r500 code still used r300_pfs_compile_state, which contains some fields that really only make sense on r3xx type hardware. In order to allow both fragprog implementations to go forward without disturbing each other, I've pushed this structure down into the respective r[3|5]00_fragprog.c | |||
2008-06-13 | i915: Improved the not used tile code | Jakob Bornecrantz | |
2008-06-13 | r300: Fix depth texture GL_LUMINANCE vs. GL_INTENSITY mixup | Nicolai Haehnle | |
2008-06-13 | r300: Reenable t->filter_1 (though currently not used) | Nicolai Haehnle | |
2008-06-13 | trivial: Update clear-undefined | Jakob Bornecrantz | |
2008-06-13 | mesa: Fix libglapi.a build for dri | Jakob Bornecrantz | |
2008-06-13 | i915: Fix offsets not being used for surface targets | Jakob Bornecrantz | |
2008-06-13 | i915: Fix most of the clear problems | Jakob Bornecrantz | |
trivial/clear-undefined still fails | |||
2008-06-13 | trival: Added test for undefined context of buffer | Jakob Bornecrantz | |
2008-06-13 | gallium: another attempt at fixing libglapi.a compilation for DRI builds | Brian Paul | |
If building for DRI, make a dummy/empty libglapi.a for now. | |||
2008-06-13 | mesa: fix typo: s/stacks/stack/ | Brian Paul | |
2008-06-13 | gallium: Fix PIPE_FORMAT_A2B10G10R10_UNORM definition. | Michal Krol | |
Whoops! | |||
2008-06-13 | gallium: Add PIPE_FORMAT_A2B10G10R10_UNORM. | Michal Krol | |
2008-06-13 | glx: load swrast_dri.so | George Sapountzis | |
caveats: - does not work with old (i.e. libGLcore) xserver: - made unbindContext a noop - extensions: GLX_SGI_make_current_read GLX_EXT_texture_from_pixmap GLX_MESA_copy_sub_buffer | |||
2008-06-13 | dri/swrast: make unbind a noop | George Sapountzis | |
This is for loading swrast_dri.so from libGL. MakeContextCurrent() seems to unbind the context right after binding it and DRI drivers also have a noop DriverAPI.UnbindContext ... | |||
2008-06-13 | gallium: Allow pipe format component sizes to be specified | Michal Krol | |
with finer granularity. This will allow us to define A2R10G10B10 format. | |||
2008-06-13 | mesa: Remove duplicate code. | Michal Krol | |
2008-06-13 | dri/swrast: add OpenGL 2.1 functions | George Sapountzis | |
2008-06-13 | glx: use ErrorMessageF | George Sapountzis | |
2008-06-13 | i915: Messed up lineloop now works | Jakob Bornecrantz | |
2008-06-13 | i915: Support all primtive types in vbuf path | Jakob Bornecrantz | |
2008-06-12 | silly bug: it's PROGRAM_VARYING | Zack Rusin | |
2008-06-12 | silly bug: it's PROGRAM_VARYING | Zack Rusin | |
2008-06-12 | glsl: make sure we replace all output reads with temporaries | Zack Rusin | |
test in if.glsl | |||
2008-06-12 | glsl: allow uniforms | Zack Rusin | |
2008-06-12 | glsl: make sure we replace all output reads with temporaries | Zack Rusin | |
test in if.glsl | |||
2008-06-12 | mesa: add some #if FEATURE_x tests | Brian Paul | |
2008-06-12 | gallium: add some #if FEATURE_x tests | Brian Paul | |
2008-06-12 | mesa: remove unneeded #include | Brian Paul | |
2008-06-12 | gallium: add missing comma | Brian Paul | |
2008-06-12 | gallium: disable the codegen for TGSI_OPCODE_EXPBASE2 for now. | Brian Paul | |
The x86 code seems to fail for exponents of 4 or larger. See glean's vertProg1/EX2 test. | |||
2008-06-12 | gallium: fix SSE codegen for instructions that use both a CONSTANT and IMMEDIATE | Keith Whitwell | |
Fixes codegen for instructions like MUL dst, CONST[0], IMM[0]; the two operands would up getting aliased in the x86/sse code. Fixes glean/vertProg1/fogparams test. | |||
2008-06-12 | gallium: test for FEATURE_convolution | Brian Paul | |
2008-06-12 | gallium: remove unused/old st_atom_fixedfunction.c file | Brian Paul | |
2008-06-12 | glsl: fix array size initialiazers using const variables | Zack Rusin | |
e.g. const int kernelSize = 9; uniform vec2 kernel[kernelSize]; | |||
2008-06-12 | almost forgot - RelAddr is a boolean so use it here | Zack Rusin | |
2008-06-12 | shaders: fix allocation of arrays of parameters | Zack Rusin | |
2008-06-12 | glsl: implement variable array indexes | Zack Rusin | |
2008-06-12 | almost forgot - RelAddr is a boolean so use it here | Zack Rusin | |
2008-06-12 | add some glsl example testing different arrays of uniforms | Zack Rusin | |
2008-06-12 | shaders: fix allocation of arrays of parameters | Zack Rusin | |
2008-06-12 | glsl: implement variable array indexes | Zack Rusin | |
2008-06-12 | mesa: restore and fix Keith's "further degenerate the special case lit ↵ | Brian Paul | |
substitute" There was a bug in emit_degenerate_lit() that caused the SLT to produce unpredictable results in lit.z Plus, added a bunch of new comments. | |||
2008-06-12 | pb: don't assert(0) on failure to allocate - this is a normal condition in ↵ | Keith Whitwell | |
many drivers | |||
2008-06-12 | Update .gitignore for progs/glsl | Dan Nicholson | |
2008-06-12 | sparc: add swrast to dri drivers | Dave Airlie | |
2008-06-11 | Revert "mesa: further degenerate the special case lit substitute" | Brian Paul | |
This reverts commit e841b92d9c8bf48085b4996df828ae745977f931. This fixes two specular lighting conform failures. |