Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-21 | mesa: add some debug assertions to detect null current texture object pointers | Brian Paul | |
See bug #17895. These assertions could be removed when this is resolved. | |||
2008-12-14 | Perform range checking on app supplied texture base level | Ian Romanick | |
It is possible for applications to specify any texture base level, including trivially invalid values (i.e., 47000000). When an app specifies an invalide base level, we should gracefully disable the texture instead of accessing memory outside the gl_texture_object. This fixes an occasional segfault in one of our conformance tests. | |||
2008-09-21 | mesa: refactor: move #define FEATURE flags into new mfeatures.h file | Keith Whitwell | |
Also, check the FEATURE flags in many places. (cherry picked from commit 40d1a40f294f1ed2dacfad6f5498322fc08cc2d1) Conflicts: src/mesa/main/config.h src/mesa/main/context.c src/mesa/main/texobj.c src/mesa/main/texstate.c src/mesa/main/texstore.c | |||
2008-08-18 | mesa: rearrange some code in _mesa_BindTexture() to fix error detection bug ↵ | Brian Paul | |
17173 Also, move GL_TEXTURE_RECTANGLE init code into separate function. | |||
2008-08-07 | mesa: fix glBindTexture error string (bug 17005) | Brian Paul | |
2008-08-06 | mesa: fix comment about texture targets (bug 17005) | Brian Paul | |
2008-02-15 | Fix glBindTexture crash (bug 14514) | Brian | |
2007-08-16 | Bring over the texobj refcounting changes from mesa_7_0_branch | Brian | |
2007-08-14 | Fix a few more problems with freeing FBOs/textures during context destruction. | Brian | |
Free FBOs before textures since the later may be referenced by the former. Need to bind the context we're destroying if there isn't a current context so that ctx->DeleteTexture() etc can be used. | |||
2007-08-13 | Implement mutex/locking around texture object reference counting. | Brian | |
Use new _mesa_reference_texobj() function for referencing/unreferencing textures. Add new assertions/tests to try to detect invalid usage of deleted textures. | |||
2007-06-11 | Replace texobj->Complete with texobj->_Complete since it's a derived field. | Brian | |
2007-05-21 | get rid of GenTexturesLock, used ctx->Shared->Mutex | Brian | |
2007-05-21 | remove the unused texobj Mutex field | Brian | |
2007-05-21 | remove a VMS-ism that doesn't seem needed elsewhere | Brian | |
2007-05-21 | improve some comments, clean-up formatting | Brian | |
2007-05-16 | Initial implementation of MESA_texture_array | Ian Romanick | |
Shadow sampling from texture arrays is still not implemented. Everything else should be there, though. | |||
2007-05-10 | Refactor the loop in unbind_texobj_from_texunits. | Ian Romanick | |
Common code was pulled out of the per-target if-statment and put at the end of the for-loop. The common code is guarded by a new variable, curr, that is set to point to the unit's current target in each if-statement. | |||
2007-01-23 | fixes for C++ warnings/errors | Brian | |
2006-11-01 | Merge texmem-0-3-branch. | Keith Whitwell | |
2006-06-15 | added some comments, braces in _mesa_BindTexture | Brian Paul | |
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-20 | Lots of changes/fixes for rendering to framebuffer objects. | Brian Paul | |
- When deleting texture objects, unbind from FBOs if necessary. - Changed driver hooks for starting/ending render to texture. - Now properly handle case where gl[Copy]TexImage() is called after glFramebufferTexture[123]D(). That didn't work before. | |||
2005-10-05 | Remove _IsPowerOfTwo from gl_texture_object, not really needed. | Brian Paul | |
2005-10-05 | In gl_texture_image replace IntFormat with InternalFormat and Format with | Brian Paul | |
_BaseFormat to be consistant with gl_renderbuffer. | |||
2005-09-23 | Committing in . | Jouk Jansen | |
1) change compilation on VMS to use IEEE floating points 2) one more problem with _mesa_sprintf solved Modified Files: Mesa/docs/README.VMS Mesa/progs/demos/descrip.mms Mesa/progs/tests/descrip.mms Mesa/progs/util/descrip.mms Mesa/progs/xdemos/descrip.mms Mesa/src/glu/mesa/descrip.mms Mesa/src/glu/sgi/descrip.mms Mesa/src/glut/glx/descrip.mms Mesa/src/mesa/array_cache/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/glapi/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/main/texobj.c Mesa/src/mesa/math/descrip.mms Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/shader/grammar/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ---------------------------------------------------------------------- | |||
2005-09-16 | use mesa import wrappers, bug 4468 | Brian Paul | |
2005-03-22 | add FreeTexImageData hook to help single-copy texturing in drivers | Keith Whitwell | |
2005-02-12 | unlock mutex upon error return (Jeff Muizelaar) | Brian Paul | |
2005-02-11 | mesa-main-0-NULL.patch from Jeff Muizelaar | Keith Whitwell | |
2005-02-05 | Remove the Shared->TexObjectList pointer and Next field from gl_texture_object. | Brian Paul | |
Was only used by two drivers to walk over all texture objects. Can do that via the hash table instead. Cleaned up some comments for struct gl_texture_object. | |||
2005-01-26 | added mutex to-do comment | Brian Paul | |
2005-01-19 | Change behaviour of glDeleteTextures as discussed on ARB list. | Brian Paul | |
glDeleteTexture makes the texture ID immediately free for re-use while the actual texture object lingers until its reference count goes to zero (when no longer bound by any rendering context). | |||
2004-12-21 | `t' was not initialized (use `texture' instead?) | Daniel Borca | |
2004-12-21 | fix bug in _mesa_IsTexture() | Brian Paul | |
2004-09-23 | added a comment in BindTexture | Brian Paul | |
2004-09-14 | Repeatedly deleting a texture ID with glDeleteTextures() could lead to a crash. | Brian Paul | |
Added a DeletePending flag to texture object struct to fix that. Other misc clean-ups. | |||
2004-08-25 | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | |
1015696) | |||
2004-03-20 | minor clean-ups | Brian Paul | |
2004-02-06 | inform driver of changed wrap/filter parameters due to binding of nv_texrect ↵ | Roland Scheidegger | |
texture | |||
2004-01-27 | Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a single | Keith Whitwell | |
array, texObj->Image[face][level]. | |||
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() | |||
2003-11-25 | added a cast | Brian Paul | |
2003-11-24 | minor error string improvement | Brian Paul | |
2003-10-21 | Added GLAPIENTRY decorations for all first level OpenGL API function entry | Kendall Bennett | |
points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler. | |||
2003-09-12 | Allow glTexImage1/2/3D to specify width/height/depth = 0. | Brian Paul | |
This allows texture state to be resettable to default state. Not allowed according to the spec, but allowed by all other OpenGL libs. | |||
2003-08-28 | Added OpenGL 1.4's per-texture LOD bias. | Brian Paul | |
2003-08-18 | minor code improvement in glGenTextures | Brian Paul | |
2003-07-22 | Restore more code lost during last big merge. | Brian Paul | |
Rename colortable-related functions. | |||
2003-07-17 | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | |