Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | added fbobject.c to sources | Brian Paul | 2005-02-05 | 1 | -0/+3 |
| | |||||
* | Some initial work on GL_EXT_framebuffer_object. | Brian Paul | 2005-02-05 | 5 | -11/+847 |
| | |||||
* | Remove the Shared->TexObjectList pointer and Next field from gl_texture_object. | Brian Paul | 2005-02-05 | 3 | -77/+30 |
| | | | | | | 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. | ||||
* | add a few comments | Brian Paul | 2005-02-05 | 1 | -0/+5 |
| | |||||
* | clamp viewport against ctx->Const.MaxViewportWidth/Height instead of ↵ | Brian Paul | 2005-02-02 | 1 | -4/+4 |
| | | | | MAX_WIDTH/HEIGHT | ||||
* | fix max viewport query | Brian Paul | 2005-01-30 | 2 | -7/+9 |
| | |||||
* | add number of passes count to ati_fragment_shader | Dave Airlie | 2005-01-30 | 1 | -0/+1 |
| | |||||
* | remove a bunch of temporary #defines, now that glext.h was updated | Brian Paul | 2005-01-26 | 1 | -46/+1 |
| | |||||
* | just comments/clean-up | Brian Paul | 2005-01-26 | 2 | -8/+14 |
| | |||||
* | added mutex to-do comment | Brian Paul | 2005-01-26 | 1 | -0/+4 |
| | |||||
* | just fix a comment and update date | Brian Paul | 2005-01-26 | 1 | -2/+2 |
| | |||||
* | RGB/LUMINANCE texelfetchers (float version) returned 255.0F for alpha ↵ | Daniel Borca | 2005-01-26 | 1 | -14/+14 |
| | | | | channel, instead of 1.0F | ||||
* | Added _mesa_HashNextEntry() function to allow walking over all entries | Brian Paul | 2005-01-24 | 2 | -46/+127 |
| | | | | | | in a hash table. Added _mesa_test_hash_functions() for unit testing. Updated comments, etc. | ||||
* | Determine ahead of time whether a display list will include vertices | Keith Whitwell | 2005-01-22 | 3 | -20/+68 |
| | | | | | | which have to be processed in the 'loopback' path. If so, send all vertices that way as the transition from playback->loopback has several problems. | ||||
* | add getstring.c; remove arb*.h nv*.h stuff | Michal Krol | 2005-01-21 | 1 | -44/+4 |
| | |||||
* | Update glDeletePrograms/Buffers() so that the ID is freed immediately, like | Brian Paul | 2005-01-20 | 2 | -14/+6 |
| | | | | texture objects. | ||||
* | Removed gl_texture_object's DeletePending. Changed a comment. | Brian Paul | 2005-01-19 | 1 | -2/+1 |
| | |||||
* | Change behaviour of glDeleteTextures as discussed on ARB list. | Brian Paul | 2005-01-19 | 1 | -14/+9 |
| | | | | | | 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). | ||||
* | fix MAX_VERTEX_ATTRIBS_ARB query | Michal Krol | 2005-01-18 | 2 | -4/+4 |
| | |||||
* | add 3dlabs_shhandle interface | Michal Krol | 2005-01-17 | 1 | -41/+42 |
| | |||||
* | allow more internalFormat/format combinations (i hope i got it right) | Daniel Borca | 2005-01-17 | 1 | -2/+5 |
| | |||||
* | clean up gl2 structs | Brian Paul | 2005-01-17 | 1 | -77/+85 |
| | |||||
* | added getstring.c | Brian Paul | 2005-01-16 | 1 | -0/+3 |
| | |||||
* | _mesa_GetInteger/Float/Boolean/Doublev() are now generated with the new | Brian Paul | 2005-01-16 | 3 | -4521/+4547 |
| | | | | | get_gen.py Python script. Moved GetString(), GetPointer(), GetError() into new getstring.c file. | ||||
* | add ARB_shader_objects interfaces, shared and context state | Michal Krol | 2005-01-13 | 1 | -3/+80 |
| | |||||
* | enable ARB_fragment/vertex_shader | Michal Krol | 2005-01-13 | 1 | -4/+4 |
| | |||||
* | init ARB_shader_objects subsystem | Michal Krol | 2005-01-13 | 1 | -6/+16 |
| | |||||
* | Some initial work for OpenGL 2.0: glStencilFunc/Op/MaskSeparate() functions. | Brian Paul | 2005-01-12 | 5 | -6/+280 |
| | |||||
* | applied Keith's patch for "safe" type-punning. | Daniel Borca | 2005-01-11 | 1 | -8/+8 |
| | | | | made IS_NEGATIVE produce a boolean (useful when xoring with other booleans). | ||||
* | `t' was not initialized (use `texture' instead?) | Daniel Borca | 2004-12-21 | 1 | -1/+1 |
| | |||||
* | fix bug in _mesa_IsTexture() | Brian Paul | 2004-12-21 | 1 | -1/+10 |
| | |||||
* | missing `or' in preprocessor conditional | Daniel Borca | 2004-12-21 | 1 | -1/+1 |
| | |||||
* | allow ARB vp/fp query program errors | Daniel Borca | 2004-12-20 | 1 | -7/+10 |
| | |||||
* | really protect against npot compressed textures (logbase2 never returns -1). | Daniel Borca | 2004-12-20 | 1 | -3/+3 |
| | |||||
* | Implement software ATI_fragment_shader | Dave Airlie | 2004-12-19 | 9 | -3/+354 |
| | | | | no error detection, slow, may not be 100% correct but a good start | ||||
* | added GL_ARB_pixel_buffer_object extension string | Brian Paul | 2004-12-18 | 1 | -0/+1 |
| | |||||
* | fxt1_decode_1() needs to be non-static for the tdfx and glide drivers. | Adam Jackson | 2004-12-15 | 1 | -2/+2 |
| | |||||
* | Fix up glx/x11 to work when built with -fvisibility=hidden. | Adam Jackson | 2004-12-15 | 1 | -0/+5 |
| | |||||
* | uint*t -> u_int*t changes | Alan Hourihane | 2004-12-14 | 3 | -8/+4 |
| | |||||
* | Added driver hooks for GetTexImage() and GetCompressedTexImage(). | Brian Paul | 2004-12-12 | 4 | -173/+225 |
| | | | | Added fallback _mesa_get_[compressed]_teximage() routines to texstore.c | ||||
* | allow GetTexImage with RGBA format and COLOR_INDEX internalformat | Daniel Borca | 2004-12-10 | 1 | -2/+4 |
| | |||||
* | silence warnings | Alan Hourihane | 2004-12-08 | 1 | -1/+1 |
| | |||||
* | explicit cast in a few places | Daniel Borca | 2004-12-06 | 1 | -2/+2 |
| | |||||
* | disable junk for mingw | Daniel Borca | 2004-12-06 | 1 | -0/+2 |
| | |||||
* | direct bug reports to freedesktop.org | Brian Paul | 2004-12-05 | 1 | -3/+3 |
| | |||||
* | mask color indexes against palette size, per the spec | Brian Paul | 2004-12-03 | 1 | -2/+5 |
| | |||||
* | Use the GL datatypes. Lots of assorted clean-ups. | Brian Paul | 2004-12-03 | 1 | -245/+250 |
| | |||||
* | silence a variety of warnings found with g++ 3.4.2 | Brian Paul | 2004-12-03 | 6 | -22/+26 |
| | |||||
* | Fix some warnings | Alan Hourihane | 2004-12-02 | 1 | -2/+0 |
| | |||||
* | Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport(). | Brian Paul | 2004-11-27 | 3 | -44/+31 |
| | | | | | | | | Now, the driver's Viewport routine should call _mesa_ResizeBuffersMESA() if necessary. Cleaned up code related to GLframebuffer width/height initialization. Set initial viewport/scissor params in _mesa_make_current2(), instead of in the drivers' MakeCurrent functions. |