Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2003-11-24 | Merge head into branchvtx-0-2-24112003vtx-0-2-branch | Keith Whitwell | 20 | -267/+867 | |
2003-11-21 | fixup gamma_render.c | Alan Hourihane | 1 | -70/+20 | |
2003-11-21 | Merge head into branch | Keith Whitwell | 287 | -20712/+24780 | |
2003-11-21 | linux-solo compiles as far as the gamma driver, which seems independentlyvtx-0-2-21112003-freeze | Keith Whitwell | 35 | -304/+325 | |
broken? | |||||
2003-11-12 | compilation fixes, disable ubyte color code for now at least | Keith Whitwell | 12 | -493/+279 | |
2003-11-11 | Turn off some debug | Keith Whitwell | 1 | -2/+2 | |
2003-11-11 | Clean a little | Keith Whitwell | 1 | -3/+8 | |
2003-11-11 | Don't adjust indicies if adjustment is zero | Keith Whitwell | 1 | -4/+6 | |
2003-11-11 | Fix import_color functions. | Keith Whitwell | 1 | -6/+4 | |
2003-11-11 | Add CallLists() to vtxfmt. | Keith Whitwell | 6 | -44/+149 | |
Restore old NormalLength optimization for display lists. Add some heuristics to t_vtx_api.c to prevent bloated vertices and excessive flushing (hopefully). | |||||
2003-11-11 | Add CallLists to vtxfmt definition. Fix some FLUSH() usage in save | Keith Whitwell | 5 | -17/+15 | |
functions. | |||||
2003-10-16 | Add missing GL_FRONT_AND_BACK case. | Keith Whitwell | 1 | -1/+2 | |
2003-10-15 | Fix assertion | Keith Whitwell | 1 | -3/+5 | |
2003-10-14 | Restore code to clean incoming position data of size <= 2. | Keith Whitwell | 1 | -7/+25 | |
2003-10-14 | Deal with wrapped, weak primitives correctly. | Keith Whitwell | 2 | -46/+88 | |
2003-10-14 | Bind material data when required. | Keith Whitwell | 1 | -73/+66 | |
Remove #if 0 blocks Need to verify VertexProgram behaviour. | |||||
2003-10-14 | Implement FALLBACK() when receiving EvalCoord or CallList inside | Keith Whitwell | 1 | -29/+34 | |
begin/end pair when compiling. Clean up compilation state invalidation a little. | |||||
2003-10-14 | Reset ctx->Driver.CurrentSavePrimitive to PRIM_UNKNOWN after compiling a | Keith Whitwell | 1 | -0/+10 | |
glCallList() command. | |||||
2003-10-14 | Implement compiled DrawArrays and DrawElements. | Keith Whitwell | 2 | -3/+92 | |
Use the PRIM_WEAK flag to make sure they are executed correctly on playback. | |||||
2003-10-14 | Initialize the arrayelt helper | Keith Whitwell | 1 | -0/+6 | |
2003-10-14 | Make it clear that the driver (or tnl/ module) must supply | Keith Whitwell | 1 | -7/+11 | |
the DrawArray/DrawElements code for the outside-begin-end compilation states. | |||||
2003-10-14 | Use correct check to terminate DrawArrays loop | Keith Whitwell | 1 | -1/+1 | |
2003-10-14 | Cope with being initialized multiple times. | Keith Whitwell | 1 | -0/+3 | |
2003-10-14 | Use _mesa_compile_error() rather than just _mesa_error(). | Keith Whitwell | 1 | -9/+9 | |
2003-10-14 | Cope with dangling attribute references from display lists | Keith Whitwell | 4 | -44/+65 | |
Handle colormaterial updates correctly | |||||
2003-10-13 | use VERT_ATTRIB constants in definitions of _save_VertexAttrib* | Keith Whitwell | 1 | -8/+8 | |
2003-10-13 | Add code for GL_COMPILE_AND_EXECUTE | Keith Whitwell | 1 | -3/+1 | |
2003-10-13 | Use ctx->Exec rather than _glapi_Dispatch so that this will work | Keith Whitwell | 1 | -30/+30 | |
even in COMPILE_AND_EXECUTE modes. | |||||
2003-10-13 | Fix error in material recording. | Keith Whitwell | 1 | -1/+16 | |
Add flush commands to new vertex functions for serializing with tnl module. | |||||
2003-10-13 | Fix several more display list glitches. | Keith Whitwell | 4 | -97/+163 | |
Get 'loopback' replay of display lists working. | |||||
2003-10-13 | use VERT_ATTRIB constants in definitions of _tnl_VertexAttrib* | Keith Whitwell | 1 | -8/+8 | |
2003-10-13 | Fix typo in VertexAttrib2fNV | Keith Whitwell | 1 | -1/+1 | |
2003-10-13 | Correctly convert back colors to GLchan values when copying | Keith Whitwell | 1 | -2/+2 | |
2003-10-13 | Correct initialization of tnl->vtx.current for material attributes. | Keith Whitwell | 1 | -2/+4 | |
2003-10-13 | Add code to get materials working in lighting again. | Keith Whitwell | 2 | -22/+80 | |
2003-10-13 | Flush vertex data before playing back a vertex_list. | Keith Whitwell | 1 | -0/+3 | |
2003-10-13 | remove debug statements | Keith Whitwell | 8 | -59/+2 | |
2003-10-13 | Fix a few minor displaylist bugs | Keith Whitwell | 1 | -42/+9 | |
2003-10-10 | Solve the gears glitches. | Keith Whitwell | 2 | -9/+9 | |
2003-10-10 | Fix a typo with evalcoord1f | Keith Whitwell | 2 | -3/+16 | |
2003-10-10 | Get edgeflag/unfilled polygons working. | Keith Whitwell | 7 | -18/+54 | |
Don't allow more vertices in a vertex list than ctx->Const.MaxArrayLockSize. | |||||
2003-10-10 | vertex_list display lists (replacing the old immediate struct) are | Keith Whitwell | 10 | -159/+395 | |
working, though gears shows a couple of glitches still. | |||||
2003-10-10 | Fallback (opcode-based) display lists are working. | Keith Whitwell | 4 | -21/+29 | |
2003-10-10 | Fix assertion in render stage. | Keith Whitwell | 4 | -22/+55 | |
Add missing call to _mesa_update_state() before running pipeline Bind ctx->Current values when no user-supplied vertex data available. | |||||
2003-10-10 | Added quite a bit of debug prints. Fixed a couple of smaller bugs. | Keith Whitwell | 3 | -16/+74 | |
Isosurf and pointblast run & looks pretty close to correct! | |||||
2003-10-09 | Checkpoint -- The whole library compiles now... | Keith Whitwell | 12 | -41/+214 | |
2003-10-09 | Checkpoint -- module compiles. Some issues with strides outstanding. | Keith Whitwell | 3 | -33/+29 | |
2003-10-09 | Checkpoint commit -- module compiles | Keith Whitwell | 15 | -781/+453 | |
2003-10-09 | remove one more unused type | Keith Whitwell | 2 | -50/+0 | |
2003-10-09 | Remove no-longer-used vector types | Keith Whitwell | 2 | -315/+0 | |