Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-20 | Before calling _mesa_create_context(), initialize a dd_function_table struct | Brian Paul | |
by calling _mesa_init_driver_functions() and then plugging in the driver- specific functions. In particular, make sure ctx->Driver.NewTextureObject points to the appropriate driver function so that _all_ texture objects are augmented with the driver-specific data. Put in a bunch of assertions in the texture-related driver functions that texObj->DriverData is valid. Remove old dead code in near future. | |||
2004-01-19 | replace CALLOC with MALLOC in _mesa_new_texture_object() | Brian Paul | |
2004-01-19 | remove incorrect comments, added _mesa_bzero() call in ↵ | Brian Paul | |
_mesa_initialize_texture_object() | |||
2004-01-17 | added some missing FLUSH_VERTICES calls | Brian Paul | |
2004-01-16 | bump version to 6.1 (new development) | Brian Paul | |
2004-01-15 | Cosmetic changes. | Brian Paul | |
Added a bunch of const qualifiers. Use _mesa_memcpy() instead of memcpy(), etc. | |||
2004-01-15 | change MALLOC to CALLOC to silence valgrind error in _playback_copy_to_current() | Brian Paul | |
2004-01-14 | added blurb about NVIDIA extensions | Brian Paul | |
2004-01-14 | bump MAX_WIDTH/HEIGHT to 4K pixels | Brian Paul | |
2004-01-13 | glDeleteProgramsARB() failed for fragment programs (bug 876160) | Brian Paul | |
2004-01-13 | init an uninitialized variable. This doesn't fix a latent bug because | Karl Schultz | |
the variable was multiplied by zero. | |||
2004-01-13 | add casts to silence compiler warnings | Karl Schultz | |
2004-01-11 | fix vertex program debugger issues (Bug 874382) | Brian Paul | |
2004-01-11 | add GL_TEXTURE_CUBE_MAP_ARB to _mesa_max_texture_levels(), reordered some ↵ | Brian Paul | |
comments | |||
2004-01-08 | set StringPos field in parse_vp_instruction (Mesa bug 873011) | Brian Paul | |
2004-01-05 | Re-commit t_vertex.[ch] changes to fd.o server. | Keith Whitwell | |
2004-01-01 | whitespace changes and new comments | Brian Paul | |
2003-12-27 | Correct sense of ctx->_ForceEyeCoords (Felix Kuhling) | Keith Whitwell | |
2003-12-23 | the optimized UNCLAMPED_FLOAT_TO_UBYTE macro was broken | Brian Paul | |
2003-12-21 | Version bumps, etc for Mesa 6.0 | Brian Paul | |
2003-12-12 | remove TexCoordInterleaveFactor. Clean up _mesa_InterleavedArrays() | Brian Paul | |
2003-12-12 | - Test instruction count | Karl Rasche | |
- Throw an error for VPs if we set position invariance and then write to the output position | |||
2003-12-11 | replace gl/mesa_wgl.h with GL/mesa_wgl.h (Simon Goodall) | Brian Paul | |
2003-12-09 | Fix definitions for Intel compiler. | Eric Anholt | |
Submitted by: Mikhail Teterin <mi@FreeBSD.org> | |||
2003-12-09 | Arg. I can't code.. Test that we don't recongnize '0' as having a leading zero.. | Karl Rasche | |
2003-12-09 | - New grammar (0.5) from Michal Krol, merges many opcodes and adds range ↵ | Karl Rasche | |
testing - Proper header on arbparse_syn.h - Handling of relative offsets for ARB_vp - s/MaxFragment/MaxVertex - Check for leading 0's in the fraction portions of floats in parse_float() | |||
2003-12-09 | - handle IsPositionInvariant | Karl Rasche | |
- tweak assertion to allow for relative offets from ARB_vp | |||
2003-12-09 | Committing in . | Jouk Jansen | |
Small VMS issue : sys/param.h is not available on all systems and not needed anyway. Modified Files: Mesa-newtree/src/mesa/main/vsnprintf.c ---------------------------------------------------------------------- | |||
2003-12-09 | Update NEED_SECONDARY_COLOR macro to test if either vertex/fragment | Brian Paul | |
programs are enabled and if they need secondary color input register. Patch by Karl Rasche, with tweaks by Brian. | |||
2003-12-08 | kill a warning | Alan Hourihane | |
2003-12-08 | Committing in . | Jouk Jansen | |
OpenVMS compile issues Modified Files: Mesa-newtree/progs/tests/cva.c Mesa-newtree/progs/tests/dinoshade.c Mesa-newtree/progs/tests/multipal.c Mesa-newtree/src/mesa/main/descrip.mms Mesa-newtree/src/mesa/tnl/descrip.mms Mesa-newtree/src/mesa/tnl/t_vtx_api.c ---------------------------------------------------------------------- | |||
2003-12-06 | conditionally define GLAPIENTRYP to prevent some warnings in linux-solo | Brian Paul | |
2003-12-05 | fix compiler warning | Alan Hourihane | |
2003-12-05 | remove duplicate declarations | Alan Hourihane | |
2003-12-04 | Change | Karl Schultz | |
#define GLAPIENTRYP __stdcall * to #define GLAPIENTRYP GLAPIENTRY * These two defs end up doing the same thing, but the compiler can squawk because they look different. Also matches the way it is declared in gl.h. Do same for GLCALLBACKP. | |||
2003-12-04 | update files | Karl Schultz | |
2003-12-04 | Add missing GLAPIENTRY | Karl Schultz | |
2003-12-04 | remove duplicate declaration | Alan Hourihane | |
2003-12-04 | Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings. | Brian Paul | |
2003-12-04 | Fix some problems with glDrawElements and vertex buffer objects. | Brian Paul | |
2003-12-02 | Remove things having to do with ARB_matrix_palette/ARB_vertex_blend | Karl Rasche | |
2003-11-30 | s/texUnit->Enabled/enableBits/ (Karl Rasche) | Brian Paul | |
2003-11-30 | Fixed compiler warnings | Karl Rasche | |
Assign the correct thing to TexturesUsed[] | |||
2003-11-29 | Fix generic/conventional vertex array glitches. | Brian Paul | |
Changed _NEW_ARRAY_ATTRIB_0 back to 0x10000 so that the conventional and generic enable bits do not alias. In ac_import.c test Array.Normal.Enabled instead of Array._Enabled & _NEW_ARRAY_COLOR0, etc. In t_array_import.c give priority for generic arrays over conventional arrays on an individual basis, not all or none. | |||
2003-11-28 | more tweaks to error checking and reporting | Brian Paul | |
2003-11-28 | if id==0 in glGetQueryObject, raise GL_INVALID_OPERATION | Brian Paul | |
2003-11-28 | fix an error test | Brian Paul | |
2003-11-25 | current raster color index should be GLfloat | Brian Paul | |
2003-11-25 | fix assorted g++ warnings | Brian Paul | |
2003-11-25 | casts for g++ | Brian Paul | |