summaryrefslogtreecommitdiff
path: root/src/mesa/main/texobj.c
AgeCommit message (Expand)AuthorFilesLines
2003-09-12Allow glTexImage1/2/3D to specify width/height/depth = 0.Brian Paul1-1/+9
2003-08-28Added OpenGL 1.4's per-texture LOD bias.Brian Paul1-0/+2
2003-08-18minor code improvement in glGenTexturesBrian Paul1-7/+3
2003-07-22Restore more code lost during last big merge.Brian Paul1-2/+2
2003-07-17Merge Jose's documentation and core Mesa changes from embedded branchKeith Whitwell1-43/+146
2003-07-03Implemented GL_ARB_texture_non_power_of_two (except for auto mipmap generation).Brian Paul1-0/+8
2003-06-05Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything.Ian Romanick1-2/+0
2003-04-01fix default compare modeBrian Paul1-2/+2
2003-04-01New device driver hooks for texture object and texture image creation toBrian Paul1-113/+142
2003-03-10fix/improve glAreTextures/ProgramsResident (Jose Fonseca)Brian Paul1-13/+19
2003-01-14First batch of code for GL_NV_fragment_program.Brian Paul1-2/+2
2003-01-08move t->Image[i]->Format test (bug 659012)Brian Paul1-9/+9
2002-12-12Add mechanism to destroy mutexes. Important on OS's where mutex initializationKeith Whitwell1-1/+4
2002-10-24Header file clean-up:Brian Paul1-8/+2
2002-10-22remove debug printfsBrian Paul1-3/+1
2002-10-22fix refcount error in _mesa_DeleteTextures (Randy Fayan)Brian Paul1-1/+8
2002-10-22add missing texture rectangle code in _mesa_DeleteTextures()Brian Paul1-1/+7
2002-10-04Changed a number of context fields from GLchan to GLfloat (such as ClearColor).Brian Paul1-2/+2
2002-06-29Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.Brian Paul1-2/+2
2002-06-17Port glXCopyContext bug from 4.0 branch.Brian Paul1-1/+38
2002-06-15Implemented GL_NV_texture_rectangle extension.Brian Paul1-35/+78
2002-06-15Added ctx parameter to _mesa_debug()Brian Paul1-2/+2
2002-06-13more removal of fprintf() callsBrian Paul1-3/+3
2002-02-15Finished up GL_ARB_depth_texture and GL_ARB_shadow.Brian Paul1-4/+15
2001-12-04prototype implementation of GL_ARB_depth_texture, GL_ARB_shadow, GL_ARB_shado...Brian Paul1-4/+7
2001-07-27check if deleting _Current texobj in _mesa_DeleteTextures (Bart Barenbrug)Brian Paul1-1/+9
2001-06-13Allow different max texture sizes for 1/2D, 3D and cube maps.Brian Paul1-7/+17
2001-04-25fixed a potential tex obj reference count problem involving multi-textureBrian Paul1-12/+13
2001-04-20improved a glBindTexture error messageBrian Paul1-2/+2
2001-03-28use Image[i]->TexFormat to check for mipmap consistencyBrian Paul1-2/+2
2001-03-18- Port 3.4 texture utils, texture format work to 3.5 (including newGareth Hughes1-1/+2
2001-03-12Consistent copyright info (version number, date) across all files.Gareth Hughes1-5/+4
2001-03-08More g++ warning fixes. Fixes for CHAN_BITS==16, it seems to work.Brian Paul1-3/+3
2001-03-03lots of gl_*() to _mesa_*() namespace clean-upBrian Paul1-12/+12
2001-02-26tiny change to a gl_problem() callBrian Paul1-2/+2
2001-02-20Implemented GL_SGIX_shadow and GL_SGIX_shadow_texture.Brian Paul1-1/+2
2001-02-17Changed FetchTexel() function pointer arguments.Brian Paul1-1/+3
2001-01-29Removed knowledge of swrast Clear/Bitmap/Accum/Draw/Read/CopyPixelsKeith Whitwell1-7/+8
2000-12-26Major rework of tnl moduleKeith Whitwell1-20/+13
2000-12-14Renamed texture object _P to _MaxLevel and _M to _MaxLambda.Brian Paul1-11/+13
2000-11-22 Committing in .Jouk Jansen1-9/+9
2000-11-19Replaced Texture.CurrentD[] with separate Texture.Current1/2/3D vars.Brian Paul1-68/+92
2000-11-11init WrapR to GL_REPEAT modeBrian Paul1-1/+2
2000-11-05- Changes for new software rasterizer modulesKeith Whitwell1-9/+8
2000-10-30Replace the flags Mesa was using for ctx->NewState with a new setKeith Whitwell1-21/+7
2000-10-29more minor header file re-org (moved CONST, ASSERT, INLINE to config.h)Brian Paul1-1/+2
2000-10-24added incomplete() debug function/macroBrian Paul1-1/+26
2000-10-24signal NEW_TEXTURING if there's a Driver.BindTexture() functionBrian Paul1-1/+3
2000-09-12init mutexBrian Paul1-1/+2
2000-08-03added NULL parameter checking to API functionsBrian Paul1-2/+13