Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: note that texcoords are generated by setup routines when pointsprite ↵ | Keith Whitwell | 2008-10-20 | 1 | -0/+12 |
| | | | | enabled | ||||
* | mesa: new _mesa_set_vp_override() function for driver-override of vertex program | Brian Paul | 2008-10-10 | 1 | -2/+12 |
| | | | | | | | | Patch provide by Keith. Used in state tracker by DrawPixels to indicate that the state tracker (driver) is using its own vertex program. This prevents the texenvprogram code from replacing conventional shader inputs with state vars. Fixes glDraw/CopyPixels regressions. | ||||
* | mesa: replace GLuint with GLbitfield to be clearer about usage | Brian Paul | 2008-10-07 | 1 | -14/+16 |
| | | | | Also, fix up some comments to be doxygen style. | ||||
* | mesa: protect against segfault in get_fp_input_mask() | Keith Whitwell | 2008-10-07 | 1 | -1/+4 |
| | |||||
* | mesa: handle vertex program enabled case also in texenvprogram.c | Keith Whitwell | 2008-10-04 | 1 | -5/+4 |
| | |||||
* | mesa: avoid generating constant vertex attributes in fixedfunc programs | Keith Whitwell | 2008-10-03 | 1 | -5/+89 |
| | | | | | | | | | | | | Keep track of enabled/active vertex attributes. Keep track of potential vertex program outputs. When generating fragment program, replace references to fragment attributes which are effectively non-varying and non-computed passthrough attributes with references to the new CURRENT_ATTRIB tracked state value. Only downside is slight ugliness in VBO code where we need to validate state twice in succession. | ||||
* | mesa: shrink texenvprogram state key struct | Keith Whitwell | 2008-10-03 | 1 | -5/+7 |
| | |||||
* | mesa: fix temp register allocation problems. | Brian Paul | 2008-09-26 | 1 | -0/+15 |
| | | | | Complex texcombine modes were running out of registers (>32 registers for 8 tex units). | ||||
* | mesa: increase MAX_INSTRUCTIONS | Brian Paul | 2008-09-25 | 1 | -4/+2 |
| | |||||
* | mesa: fix swizzle failure, fix typo | Brian Paul | 2008-09-25 | 1 | -3/+5 |
| | |||||
* | mesa: Apply MSVC portability fixes from Alan Hourihane. | José Fonseca | 2008-05-31 | 1 | -5/+5 |
| | |||||
* | use PROGRAM_CONSTANT instead of PROGRAM_STATE_VAR when generating ↵ | Brian | 2008-01-18 | 1 | -1/+1 |
| | | | | immediates/literals | ||||
* | set SamplerUnit[] entry in load_texture() just to be safe | Brian | 2007-12-14 | 1 | -0/+4 |
| | |||||
* | set program->SamplersUsed bit when using a texture instruction | Brian | 2007-12-14 | 1 | -1/+3 |
| | |||||
* | Update texenvprogram.c code to use prog_cache.c routines. | Brian | 2007-10-31 | 1 | -128/+7 |
| | |||||
* | Remove ctx field from texenvprog_cache | Brian | 2007-10-29 | 1 | -12/+11 |
| | |||||
* | Refactor _mesa_UpdateTexEnvProgram() | Brian | 2007-10-29 | 1 | -32/+36 |
| | | | | Will be replaced by _mesa_get_fixed_func_fragment_program(). | ||||
* | Disable the else clause which assigns the default fragment program to ↵ | Brian | 2007-10-29 | 1 | -0/+2 |
| | | | | | | | | ctx->FragmentProgram._Current The _Current field should either point to the fragment program which is to be run (GLSL, ARB_f_p, fixed-func-generated, etc) or be NULL if conventional fixed-function code is to be used. Matches TNL program code. | ||||
* | properly init dst reg's CondMask/Swizzle fields | Brian | 2007-10-23 | 1 | -2/+2 |
| | |||||
* | bump up MAX_INSTRUCTIONS and add an assertion to catch emitting too many ↵ | Brian | 2007-10-23 | 1 | -3/+6 |
| | | | | instructions | ||||
* | Generate a texenv fragment program if there's a GLSL vertex shader but no ↵ | Brian | 2007-10-02 | 1 | -1/+2 |
| | | | | | | GLSL fragment shader. This allows Glean glsl1 test to get pretty far. | ||||
* | include programopt.h | Brian | 2007-09-25 | 1 | -0/+1 |
| | |||||
* | Disable vertex shader fog, compute fog in fragment shader. | Brian | 2007-09-25 | 1 | -5/+11 |
| | |||||
* | temporarily set the FRAG_BIT_FOGC bit in InputsRead when fog is enabled | Brian | 2007-09-18 | 1 | -0/+1 |
| | |||||
* | Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵ | Brian | 2007-07-04 | 1 | -4/+4 |
| | | | | of -I flags. | ||||
* | fix GL_DOT3_RGBA texture combiner mode in generated fragment programs (bug ↵ | Roland Scheidegger | 2007-07-03 | 1 | -1/+1 |
| | | | | #11030) | ||||
* | merge of glsl-compiler-1 branch | Brian | 2007-03-26 | 1 | -40/+58 |
|\ | |||||
| * | Undo some changes to _mesa_UpdateTexEnvProgram(). Fixes broken i915 texturing. | Brian | 2007-02-24 | 1 | -3/+9 |
| | | |||||
| * | s/GLint/gl_state_index/, length is now 5 not 6 | Brian | 2007-02-23 | 1 | -9/+7 |
| | | |||||
| * | fix g++ warnings/errors | Brian | 2007-01-23 | 1 | -2/+3 |
| | | |||||
| * | Moved NumTexInstructions, NumTexIndirections, etc. into gl_program since | Brian | 2007-01-09 | 1 | -9/+9 |
| | | | | | | | | they can now apply to vertex programs. | ||||
| * | Lots of assorted changes for new GLSL compiler backend. | Brian | 2006-12-15 | 1 | -26/+40 |
| | | | | | | | | New datatypes, constants, variables. | ||||
* | | use _mesa_copy_instructions() | Brian | 2007-03-22 | 1 | -4/+3 |
| | | |||||
* | | fixes for C++ warnings/errors | Brian | 2007-01-23 | 1 | -2/+3 |
|/ | |||||
* | Add a size parameter to _mesa_add_unnamed_constant() and | Brian Paul | 2006-11-15 | 1 | -1/+1 |
| | | | | | _mesa_add_named_constant() to indicate vector size (1, 2, 3 or 4). Always 4 for now... | ||||
* | remove debug code | Brian Paul | 2006-10-30 | 1 | -7/+0 |
| | |||||
* | Rather than always allocating 100 instructions, put instructions into a | Brian Paul | 2006-10-29 | 1 | -18/+42 |
| | | | | | temporary buffer, then copy into a malloc'd array of the correct size. According to Glean texCombine, we never need more than 21 instructions. | ||||
* | Change _mesa_init_instruction() to initialize an array of instructions. | Brian Paul | 2006-10-29 | 1 | -1/+1 |
| | |||||
* | Fix some breakage after the PROGRAM_UNDEFINED change | Alan Hourihane | 2006-08-10 | 1 | -2/+2 |
| | |||||
* | Some structure renaming. Prefix vertex/fragment-related structs with | Brian Paul | 2006-07-20 | 1 | -8/+9 |
| | | | | "gl_" to match other structs. | ||||
* | remove redundant 'const' | Brian Paul | 2006-05-30 | 1 | -1/+1 |
| | |||||
* | Add const qualifiers in a number of places. | Brian Paul | 2006-05-23 | 1 | -11/+12 |
| | |||||
* | In cache_item(), there was sizeof(void) expression. | Brian Paul | 2006-05-23 | 1 | -1/+1 |
| | | | | Replace void *key parameter with const struct state_key * | ||||
* | memory usage fixes for glean/conform, use a better hash function | Keith Whitwell | 2006-05-22 | 1 | -29/+49 |
| | |||||
* | Fix typo | Keith Whitwell | 2006-05-22 | 1 | -1/+1 |
| | |||||
* | Better caching for texenv programs. | Keith Whitwell | 2006-05-22 | 1 | -15/+60 |
| | | | | Initialize some values correctly. | ||||
* | casts to fix some -pedantic warnings | Brian Paul | 2006-04-13 | 1 | -4/+4 |
| | |||||
* | fix #6072 (Keith Whitwell) | Aapo Tahkola | 2006-03-28 | 1 | -12/+17 |
| | |||||
* | fix using a tmp without asking for one | Jerome Glisse | 2006-01-24 | 1 | -0/+1 |
| | |||||
* | fix broken get_half & get_zero | Aapo Tahkola | 2006-01-24 | 1 | -4/+4 |
| |