summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/x11
Commit message (Collapse)AuthorAgeFilesLines
* Remove debug printfsKeith Whitwell2005-05-201-2/+0
|
* Re-enable X11 optimized triangle funcs.Keith Whitwell2005-05-201-1/+0
|
* Remove MAX_VISUAL limitations of 100. If running dual head this canAlan Hourihane2005-05-131-7/+5
| | | | | be easily consumed. There are no limitations now and the VisualTable is realloced when necessary.
* Committing in .Jouk Jansen2005-05-101-2/+3
| | | | | | | | | | OpenVMS compile support update for new buffer-code Modified Files: Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/swrast/descrip.mms ----------------------------------------------------------------------
* fix some typos in FX codeDaniel Borca2005-05-091-5/+6
|
* remove bad assertion, added new ones in clear_pixmap()Brian Paul2005-05-061-2/+6
|
* remove some test codeBrian Paul2005-05-051-5/+0
|
* FBO changesBrian Paul2005-05-041-1302/+805
|
* Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul2005-05-049-1080/+1736
| | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
* don't call XTranslateCoordinates() if rendering to pixmapBrian Paul2005-05-041-1/+1
|
* clean up buffer creation codeBrian Paul2005-04-201-106/+75
|
* comments and clean-upBrian Paul2005-04-181-25/+27
|
* PF_8A8R8G8B pixel format (Dave Reveman)Brian Paul2005-04-125-3/+419
|
* Fix Fake_glXChooseFBConfig so passing NULL attribList causes a list of allBrian Paul2005-04-061-22/+29
| | | | fbconfigs to be returned.
* updated warning string to match patch in bug report 2868Brian Paul2005-04-041-2/+4
|
* When building in the X-Server, attr.depth doesn't exist. Instead, useIan Romanick2005-03-031-1/+4
| | | | (XMesaDrawable)w)->depth in the error message.
* added stub functions for GLX_MESA_allocate_memoryBrian Paul2005-03-011-4/+34
|
* minor changes to aid debugging, and a new commentBrian Paul2005-02-231-3/+11
|
* XMesaGetDepthBuffer() returned wrong bytesPerValue (Karl Schultz)Brian Paul2005-02-181-2/+3
|
* improved warning messageBrian Paul2005-02-071-1/+1
|
* fix compilation error for fx/MesaDaniel Borca2005-01-171-1/+1
|
* In choose_visual() we need to know if we're being called fromBrian Paul2005-01-061-12/+38
| | | | | | glXChooseVisual() or glXChooseFBConfig() so that we handle the GLX_DOUBLEBUFFER and GLX_STEREO tokens correctly. Added some new error checking in those functions too.
* 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
|