Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-02 | Fix some warnings | Alan Hourihane | |
2004-11-27 | Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport(). | Brian Paul | |
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. | |||
2004-11-27 | remove _glapi_add_entrypoint() calls, they're already in context.c | Brian Paul | |
2004-11-27 | add a few functions in add_newer_entrypoints() | Brian Paul | |
2004-11-27 | Change the dispatch offsets for the VertexAttrib*NV functions so they don't | Brian Paul | |
alias with the corresponding ARB functions. GL_ARB_vertex_shader (and OpenGL 2.0's) VertexAttrib functions don't alias with conventional vertex attributes, as GL_NV_vertex_program does. So, the ARB and NV version of VertexAttrib need to be distinct. | |||
2004-11-27 | use new PUBLIC macro for symbol export | Brian Paul | |
2004-11-27 | clean up code related to dispatch table initialization | Brian Paul | |
2004-11-27 | use _glapi_proc | Brian Paul | |
2004-11-27 | fix typo, update version/date | Brian Paul | |
2004-11-27 | remove the GLAPI/GLAPIENTRY defines - they're already in gl.h | Brian Paul | |
2004-11-27 | Removed GLCALLBACK stuff - apparently never used anywhere. | Brian Paul | |
Removed GLWINAPI stuff - only used (unnecessarily?) in enums.c | |||
2004-11-25 | Some new comments, clean-up formatting, etc. | Brian Paul | |
2004-11-25 | Started some assorted clean-ups in #defines, typedefs, etc. | Brian Paul | |
Next: move all the Windows/WGL stuff into the drivers/windows/ directory. | |||
2004-11-23 | update _mesa_store_teximageXd() comments and minor code clean-up | Brian Paul | |
2004-11-22 | Don't allow queries/etc of buffer object 0 - it's invisible to users. | Brian Paul | |
Misc clean-ups. | |||
2004-11-22 | added GL_RED/GREEN/BLUE to is_color_format() | Brian Paul | |
2004-11-22 | handle ENABLE_BIT for EXT_stencil_two_side | Daniel Borca | |
2004-11-15 | use float constants | Daniel Borca | |
2004-11-15 | use parentheses to avoid warning | Daniel Borca | |
2004-11-12 | added DD_TRI_TWOSTENCIL to ease EXT_stencil_two_side in device drivers | Daniel Borca | |
2004-11-12 | pop(stencil) for EXT_stencil_two_side | Daniel Borca | |
2004-11-10 | GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpacking | Brian Paul | |
and ignored for 1D and 2D images. Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function. This change gets propogated to some other routines. Also added new _mesa_image_address[123]d() convenience functions. | |||
2004-11-09 | added a comment and assertion in _mesa_clip_drawpixels() for PixelZoom | Brian Paul | |
2004-11-09 | added _mesa_clip_drawpixels() and _mesa_clip_readpixels() | Brian Paul | |
2004-11-08 | Remove need for defining _MSC_VER when building Mesa for windows with | Brian Paul | |
a non MS C compiler (MinGW). (Gregor Anich) | |||
2004-11-01 | cleaned up the mess a bit | Daniel Borca | |
2004-10-31 | don't advertise GL_ARB_vertex/fragment_shader until they're done | Brian Paul | |
2004-10-31 | added a cast to ADD_POINTERS macro | Brian Paul | |
2004-10-31 | indentation fix | Brian Paul | |
2004-10-31 | Use the _mesa_scale_and_bias_rgba() function in the convolution functions. | Brian Paul | |
Minor clean-ups. | |||
2004-10-31 | PBO support for gl[Get]PixelMap functions | Brian Paul | |
2004-10-31 | PBO support for glColorTable, glColorSubTable, glGetColorTable, etc. | Brian Paul | |
2004-10-31 | PBO support for glConvolutionFilter1D/2D, glGetConvolutionFilter, etc. | Brian Paul | |
2004-10-31 | updated for PBOs | Brian Paul | |
2004-10-31 | glPolygonStipple() and glGetPolygonStipple() updated for PBOs. | Brian Paul | |
2004-10-31 | PBO support for glGetCompressedTexImage(). | Brian Paul | |
2004-10-31 | glGetTexImage() now works with PBOs. | Brian Paul | |
2004-10-31 | Map/Unmap PBO as needed so that the texstore routines can work with | Brian Paul | |
hardware-based PBOs in the future. | |||
2004-10-31 | Remove redundant error checking. | Brian Paul | |
Added _mesa_buffer_unmap(). Minor clean-ups. | |||
2004-10-29 | decoder "width" parameter represents "stride-in-pixels" | Daniel Borca | |
2004-10-29 | VertexAttrib3svNV was incorrect | Brian Paul | |
2004-10-28 | Use the generic __amd64__, instead of __AMD64__ which has to be defined by hand. | Eric Anholt | |
2004-10-27 | fill api entries for ARB_shader_objects and ARB_vertex_shader | Michal Krol | |
2004-10-27 | add entries for extensions ARB_shader_objects, ARB_fragment_shader and | Michal Krol | |
ARB_vertex_shader | |||
2004-10-27 | add FEATURE flags for ARB_shader_objects, ARB_vertex_shader and | Michal Krol | |
ARB_fragment_shader | |||
2004-10-24 | Bug #1682: Mesa core code that gets linked into DRI drivers should never call | Adam Jackson | |
through the GL API directly, but should instead use the GL_CALL macro. | |||
2004-10-18 | changed _mesa_rescale_teximage2d to allow rescaling of padded images | Daniel Borca | |
2004-10-18 | added dstRowStride to dxtCompressTexFuncExt; | Daniel Borca | |
good for subimages, padded images and such. NB: intentionally, this is the last parameter, to avoid breaking the current API! adding a new parameter is not harmful, at worst it will be ignored, since all platforms use a CDECL calling convention. | |||
2004-10-18 | use RowStride instead of Width in texel fetchers. | Daniel Borca | |
changed some pointers to be (char *) instead of (long) | |||
2004-10-16 | Add support for OES_read_format. As soon as glext.h is updated with the | Ian Romanick | |
enums for this extension, the changes to gl.h can be removed. |