summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/x11
Commit message (Collapse)AuthorAgeFilesLines
* check if using a PBuffer in clip_for_xgetimage()Brian Paul2004-12-091-2/+4
|
* silence a variety of warnings found with g++ 3.4.2Brian Paul2004-12-031-6/+6
|
* silence warningsAlan Hourihane2004-12-021-4/+0
|
* reverse some debug that slipped throughAlan Hourihane2004-12-021-3/+0
|
* Fix some warningsAlan Hourihane2004-12-021-0/+3
|
* fix missing width/height errorBrian Paul2004-11-281-16/+17
|
* Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport().Brian Paul2004-11-271-0/+19
| | | | | | | | 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.
* Remove the redundant width, height fields in xmesa_buffer struct. Just useBrian Paul2004-11-274-93/+65
| | | | | the values in the contained GLframebuffer. Removed some other unneeded code.
* new GetOverlayInfo() function to reduce code and silence warningsBrian Paul2004-11-271-87/+58
|
* Use __GLXextFuncPtr type instead of void * for generic functions toBrian Paul2004-11-255-256/+255
| | | | | avoid gcc 3.4 compiler warnings. Remove the unused/obsolete GLX_render_texture stuff.
* GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpackingBrian Paul2004-11-101-2/+2
| | | | | | | 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.
* do clipping prior to XGetImage, just in case the image would extend beyond ↵Brian Paul2004-11-091-1/+53
| | | | the screen's bounds
* Removed _swrast_clip_pixelrect(). Use _mesa_clip_drawpixels() instead.Brian Paul2004-11-091-3/+3
|
* Removed _swrast_validate_pbo_access().Brian Paul2004-10-311-8/+52
| | | | In x11 driver, map/unmap PBO as needed in DrawPixels functions.
* SWTC trick (disabled for now)Daniel Borca2004-10-123-0/+31
|
* added support for GL_ARB_draw_buffersBrian Paul2004-10-024-12/+11
|
* just some comments and formatting changesBrian Paul2004-09-231-32/+36
|
* new MESA_GLX_DEPTH_BITS env varBrian Paul2004-07-231-5/+26
|
* added support for MESA_GLX_FORCE_ALPHA env varBrian Paul2004-07-231-0/+4
|
* check for null pointer in Fake_glXCreateGLXPbufferSGIGIX() (bug 961376)Brian Paul2004-05-291-2/+2
|
* If we can't allocate the rowimage - bailAlan Hourihane2004-04-301-0/+2
|
* remove DitherValuesAlan Hourihane2004-04-261-2/+0
|
* bring over build fixes from stable branchAlan Hourihane2004-04-261-0/+2
|
* check return values of _swrast_CreateContext, etcBrian Paul2004-04-211-4/+8
|
* fix max buffer size test (Kyle Bateman, bug 912828)Brian Paul2004-04-091-8/+2
|
* Implemented support for software-based AUX color buffers.Brian Paul2004-03-215-11/+34
| | | | | | Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc.
* Implementation of GL_EXT_pixel_buffer_object extension.Brian Paul2004-03-131-0/+12
| | | | | Note: extension may not be finalized yet - subject to change! Note: implementation not fully suitable for h/w implementation yet.
* a bunch of assorted clean-ups, etc to fix warnings, etcBrian Paul2004-03-047-76/+64
|
* workaround for crash-upon-exit in verbose modeDaniel Borca2004-03-021-9/+14
| | | | | fxMesa now uses grQueryResolution minor fixes to X11 and DOS drivers
* Refactored several variables out of XMesaVisual in favor of identicalIan Romanick2004-02-194-63/+100
| | | | | fields in __GLcontextModes (the base type). Removed the need to keep the XMesaVisualInfo pointer when building inside the X-server.
* implement Fake_glXCreateWindow() to fix bug #890894Brian Paul2004-02-081-2/+9
|
* fix glXChooseFBConfig bug 890167Brian Paul2004-02-041-4/+5
|
* glXChooseFBConfig() didn't handle GLX_FBCONFIG_ID optionBrian Paul2004-02-021-3/+26
|
* Committing in .Jouk Jansen2004-01-231-50/+50
| | | | | | | | | | | Trying to remove the <CR> at the end of each line. Modified Files: Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms ----------------------------------------------------------------------
* Committing in .Jouk Jansen2004-01-221-49/+50
| | | | | | | | | | | | Updated OpenVMS compile support Modified Files: Mesa/Makefile.X11 Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Added Files: Mesa/src/mesa/drivers/common/descrip.mms ----------------------------------------------------------------------
* Before calling _mesa_create_context(), initialize a dd_function_table structBrian Paul2004-01-203-130/+65
| | | | | | | | | | 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.
* Glide driver (windowed mode) fix for Voodoo2Daniel Borca2004-01-121-2/+6
|
* reindent the codeBrian Paul2004-01-071-216/+218
|
* DMesa: removed MGA2064W driverDaniel Borca2003-12-191-3/+3
| | | | | | DMesa: added capability to query visuals fxMesa: WGL_3DFX_gamma_control fxMesa: minor fixes to interface (fxQueryHardware vs fxMesaSelect...)
* check swrast->NewState in Draw/CopyPixels functionsBrian Paul2003-12-121-0/+9
|
* fix visinfo typoBrian Paul2003-12-121-1/+1
|
* check for null dpy in Fake_glXGetConfig()Brian Paul2003-12-121-0/+3
|
* Fix a front/back CopyPixels glitch.Brian Paul2003-12-051-2/+4
|
* use _swrast_CopyPixels for XFree86Alan Hourihane2003-12-041-2/+3
|
* don't use new glDrawPixel routines in XserverBrian Paul2003-12-041-8/+12
|
* Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings.Brian Paul2003-12-043-2/+16
|
* Use XPutImage() for glDrawPixels() and XCopyArea() for glCopyPixels() whenBrian Paul2003-11-291-28/+172
| | | | | | possible (when pixel formats match and drawing to front buffer with no raster operations). Results in 10-100x speed-up when applicable.
* silence a warningBrian Paul2003-11-251-1/+2
|
* prevent from optimizing out by some compilers (from XFree86 CVS)Alan Hourihane2003-10-211-1/+1
|
* Move initialization of default ctx->Driver.buffer-object-functions intoBrian Paul2003-10-191-11/+0
| | | | bufferobj.c so all the drivers don't have to worry about them.