Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-14 | util: Use pf_get_size(). | Michal Krol | |
2008-06-14 | r300: Implement GL_ARB_shadow and GL_EXT_shadow_funcs | Nicolai Haehnle | |
2008-06-14 | texenvprogram: Mark textures using ARB_shadow as ShadowSamplers | Nicolai Haehnle | |
Since ARB_fragment_program and friends are defined to ignore the setting of the GL_TEXTURE_COMPARE_FUNC parameter, we have to explicitly enable the shadow comparison by marking the texture unit in ShadowSamplers when appropriate. | |||
2008-06-14 | r300: Add radeonCompilerDump for debugging | Nicolai Haehnle | |
2008-06-14 | r300_fragprog: Refactor TEX transformation | Nicolai Haehnle | |
Streamlining source and destination registers, as well as texcoord scaling for RECT textures is now done in a radeon_program based transformation. The idea is that this will allow us to optimize away unnecessary indirections more easily. | |||
2008-06-14 | r300: Add radeon_program and trivial refactoring of r300_fragprog to use it | Nicolai Haehnle | |
The idea/hope is that radeon_program will serve as an intermediate representation for r3xx up to r6xx fragment and vertex programs. Right now, it is nothing more than a simplistic wrapper around Mesa's prog_instruction, together with the notion of clauses, taken from r6xx docs. The clauses will eventually be used to represent the nodes that are used in r300 family fragment programs. | |||
2008-06-14 | r300: Do not include r300_fragprog.h from r300_context.h and other cleanups | Nicolai Haehnle | |
2008-06-14 | r300_fragprog: Remove dead declarations, move NOP declarations into source | Nicolai Haehnle | |
2008-06-14 | r300_fragprog: Refactoring and cleanup | Nicolai Haehnle | |
Refactor so that r300_pfs_compile_state "owns"/holds a pointer to r300_fragment_program instead of the other way round. This is more natural from an object orientation point of view. Move the compiled hardware state into r300_fragment_program_code, in anticipation of on-the-fly program recompilation based on external OpenGL state. | |||
2008-06-14 | r300_fragprog: Remove dead code | Nicolai Haehnle | |
2008-06-13 | mesa: move some glapi bits around | Brian Paul | |
Move _glapi_proc typedef from glapitable.h to glapi.h Also, don't include glapitable.h from glapi.h Before we were including the huge glapitable.h file in every .c file. | |||
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 | 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 | 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 | |