Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-15 | Add a size parameter to _mesa_add_unnamed_constant() and | Brian Paul | |
_mesa_add_named_constant() to indicate vector size (1, 2, 3 or 4). Always 4 for now... | |||
2006-10-31 | signal _NEW_LIGHT in _tnl_copy_to_current() | Brian Paul | |
2006-10-30 | Move gl_vertex_program_machine struct out of mtypes.h and put into nvvertexec.h. | Brian Paul | |
Massage nvvertexec.c code to work more like s_nvfragprog.c - another step toward unifying vertex/fragment program execution. | |||
2006-10-26 | If DEBUG, check that all array indices really do fall in [start,end] in | Brian Paul | |
the DrawRangeElements() call. Warn the user if that's not true. | |||
2006-10-25 | Previously, if a fragment program referenced fragment.fogcoord but the | Brian Paul | |
program didn't use the ARB_fog_linear option, the fragment program's fragment.fogcoord register wasn't loaded properly. | |||
2006-10-18 | Fix broken line clipping. | Brian Paul | |
When both ends of the line were clipped, we were using the new v0 instead of the original v0 when computing the location of the second vertex. Thus, the second vertex's position was incorrect. Thanks to Heath Feather for finding a test case. | |||
2006-10-18 | Fix a dangerous use of ASSERT in an else-clause not enclosed in braces. | Brian Paul | |
We've been lucky if this hasn't been causing line rendering bugs. | |||
2006-10-11 | List of source (.c) files in each directory. | Brian Paul | |
To be included by X.org Makefile.am files so that lists of files don't need to be hardcoded and frequently updated there. | |||
2006-10-10 | a step toward moving run-time vertex program state out of GLcontext | Brian Paul | |
2006-10-07 | do not import arrays for generic arb attribs if the array is not enabled ↵ | Roland Scheidegger | |
(same as for generic attribs for nv vp is already done). Since the requested stride is 16, otherwise the code would end up doing lots of unnecessary import work (in doom3, trans_4_GLfloat_4f_raw caused by that was by far the single most time-consuming function in the r200 driver, not importing the disabled arrays caused the cpu time spent in the driver to drop from 45% to 30%, though real-world gain was pretty minimal as it's not really cpu bound here in the first place). | |||
2006-09-25 | bring in active_sz mechanism from i965 driver. Fixes bug 8410 | Keith Whitwell | |
2006-09-22 | don't skip user clip plane clipping when the current vertex program is ↵ | Roland Scheidegger | |
position invariant. | |||
2006-09-13 | just comments and const qualifiers | Brian Paul | |
2006-09-13 | fix broken do_EXP() | Brian Paul | |
2006-09-07 | only allow VERT_ATTRIB_MAX instead of _TNL_ATTRIB_MAX for inputs of vertex ↵ | Roland Scheidegger | |
programs (fixes a segfault since the result of the shift is undefined otherwise, and it may happen that _TNL_ATTRIB_POINTSIZE will be tried to read, unlike all other attribs this however may be unitialized (might be a bug in itself)). | |||
2006-08-25 | Remove XFree86 CVS keyword. | Brian Paul | |
2006-08-25 | In _save_End(), set CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END if | Brian Paul | |
we're in GL_COMPILE_AND_EXECUTE mode. This fixes bug 7984. | |||
2006-08-25 | improved comments | Brian Paul | |
2006-08-10 | Fixup more PROGRAM_UNDEFINED problems. | Alan Hourihane | |
2006-08-03 | use WRITE_MASK_* instead of 0x1, 0x2, etc | Brian Paul | |
2006-08-01 | Clean-up FEATURE_ARB_shader_objects #ifdefs. Bug 7492. | Michal Krol | |
2006-07-20 | Some structure renaming. Prefix vertex/fragment-related structs with | Brian Paul | |
"gl_" to match other structs. | |||
2006-07-20 | use ctx->Light.ShadeModel instead of ctx->_TriangleCaps | Brian Paul | |
2006-07-19 | Several loops over the map1/2 evaluator arrays were incorrect. | Brian Paul | |
There's only 16 evaluator maps. Define new _TNL_NUM_EVAL constant for those loops. Also, fix priority of GL_NV_vertex_program generic maps - they override the conventional maps. See bug 7564. | |||
2006-06-29 | added _TNL_NUM_GENERIC | Tilman Sauerbeck | |
2006-06-27 | Don't use nested struct definitions in tnl_clipspace_fastpath. | Brian Paul | |
Make attr_type into a top-level type: tnl_attr_type See bug 7340. | |||
2006-06-18 | fix broken negate | Aapo Tahkola | |
2006-06-14 | A number of vertex buffer fields like NormalPtr, FogCoordPtr, etc are really | Brian Paul | |
just aliases for members of the VB->AttribPtr[] array. Begin replacing FogCoordPtr with VB->AttribPtr[_TNL_ATTRIB_FOG], and similarly for NormalPtr, TexCoordPtr, PointSizePtr, etc. | |||
2006-06-14 | Rename _TNL_ATTRIB_ATTRIBUTE* to _TNL_ATTRIB_GENERIC* | Brian Paul | |
2006-06-14 | new assertion | Brian Paul | |
2006-06-13 | remove debug printf | Brian Paul | |
2006-06-13 | remove unused index_attr1fv() | Brian Paul | |
2006-06-13 | s/0/NULL/ | Brian Paul | |
2006-06-13 | When using an ARB vertex program, the generic vertex arrays do not alias the | Brian Paul | |
conventional arrays. Typo: s/writeable/writable/ | |||
2006-06-13 | minor simplification in texcoord array import | Brian Paul | |
2006-06-13 | remove some unneeded #includes | Brian Paul | |
2006-06-12 | Add support for GL_APPLE_vertex_array_object. Several test programs | Ian Romanick | |
and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required. | |||
2006-06-08 | check for invalid mode in glBegin(), bug 7142 | Brian Paul | |
2006-06-06 | prevent run_arb_vertex_program from running tnl programs unless ↵ | Aapo Tahkola | |
ctx->_MaintainTnlProgram is set | |||
2006-06-01 | Fix extended swizzling in vertex programs by introducing special swizzle ↵ | Roland Scheidegger | |
instruction, extend the 2 bit rsw field to 3 bit like used in other places. While here, also fix up rsw (negation), dph and try to fix up rsq with negative values (doesn't work, bug seems elsewhere) in the sse codegen code. | |||
2006-05-23 | Add const qualifiers in a number of places. | Brian Paul | |
2006-05-16 | Write attribs to slang machine. | Michal Krol | |
2006-05-05 | Release temporary | Keith Whitwell | |
2006-04-25 | Remove carriage returns. | Michal Krol | |
2006-04-25 | Put color index attribute into the 6th attribute slot. | Brian Paul | |
Update a lot of loops, conditionals to use the _TNL_FIRST/LAST_* values instead of specific vertex attributes. Remove the EdgeFlagv function from the GLvertexformat struct. | |||
2006-04-25 | No longer alias generic vertex attribs with conventional attribs for ↵ | Brian Paul | |
GL_ARB_vertex_program. | |||
2006-04-20 | error_attrib() should generate GL_INVALID_VALUE, not GL_INVALID_ENUM. | Brian Paul | |
New doxygen comments, misc clean-ups. | |||
2006-04-17 | Add .note.GNU-stack section to assembler files to avoid the default behavior | Kristian Høgsberg | |
of requesting executable stacks. | |||
2006-04-14 | Replace ctx->Const.MaxTextureUnits w/ ctx->Const.MaxTexture[Coord/Image]Units | Brian Paul | |
in various places. Note that ctx->Texture.CurrentUnit needs to be tested against Coord/Image limits when referenced, not just in glActiveTexture(). | |||
2006-04-13 | silence minor warnings | Brian Paul | |