Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | egl: Fix eglMakeCurrent with different surfaces. | Chia-I Wu | 2010-04-06 | 1 | -30/+45 |
| | | | | | | 0a82fadcdd0b6ebbc345c7c302da0e0efce40a98 seems to trigger a bug in _eglBindContext. Rework the logics yet again. It is simpler, and hopefully correct this time. | ||||
* | st/es: Remove unnedded --whole-archive. | Chia-I Wu | 2010-04-06 | 1 | -6/+4 |
| | | | | | | All public functions in the archives are either directly referenced or indirectly referenced by _glapi_get_proc_address. There is no need for --whole-archive. | ||||
* | scons: Link expat in dri builds. | Vinson Lee | 2010-04-05 | 1 | -0/+4 |
| | | | | | Fixes this i915g error. i915_dri.so: undefined symbol: XML_ParserCreate | ||||
* | st/mesa: trivially enable GL_EXT_gpu_program_parameters | Marek Olšák | 2010-04-05 | 1 | -0/+1 |
| | |||||
* | r300g: enforce microtiled zbuffer from X server | Marek Olšák | 2010-04-05 | 1 | -0/+31 |
| | | | | This should be relatively safe, I think. | ||||
* | r300g: typecast using the r300_texture function | Marek Olšák | 2010-04-05 | 7 | -23/+28 |
| | |||||
* | mesa: remove unused var | Brian Paul | 2010-04-05 | 1 | -2/+1 |
| | | | | Fixes a coverity warnings. | ||||
* | i965g: change value of VERT_RESULT_PSIZ hack to avoid warnings | Brian Paul | 2010-04-05 | 1 | -1/+1 |
| | |||||
* | mesa: check for _NEW_BUFFERS for color read format queries | Brian Paul | 2010-04-05 | 2 | -2/+18 |
| | |||||
* | util: added util_dl_error() | Brian Paul | 2010-04-05 | 2 | -0/+20 |
| | |||||
* | Merge branch '7.8' | Ian Romanick | 2010-04-04 | 2 | -2/+2 |
|\ | |||||
| * | Update to final names from GLX_INTEL_swap_event spec | Ian Romanick | 2010-04-04 | 2 | -2/+2 |
| | | | | | | | | Fixes bug #27454. | ||||
* | | r300g: enable OpenGL 2.1 on r3xx-r4xx chipsets | Marek Olšák | 2010-04-05 | 1 | -5/+1 |
| | | |||||
* | | r300g: add fallback for back stencil reference value and masks for r3xx-r4xx | Marek Olšák | 2010-04-05 | 5 | -37/+275 |
| | | | | | | | | | | | | | | | | | | | | | | This splits rendering into two passes when front and back stencil reference value, value mask, or write mask don't match. The advantages of doing it in the driver instead of in st are: * SWTCL is executed just once and the resulting vertex buffer is reused in the second pass. * Lower driver overhead due to the fallback being very close to the actual draw emission with minimum state change. | ||||
* | | r300g: simplify accessing screen from context | Marek Olšák | 2010-04-05 | 13 | -94/+79 |
| | | |||||
* | | r300g: remove some XXXs | Marek Olšák | 2010-04-05 | 2 | -2/+0 |
| | | | | | | | | We can't have more than 8 texcoord outputs in VS. | ||||
* | | r300g: raise the number of texture units to 16 for all supported chipsets | Marek Olšák | 2010-04-05 | 6 | -11/+13 |
| | | | | | | | | | | | | | | | | As per Radeon 9700 Opengl Programming and Optimization Guide [1], there are 16 texture units even on the first r300 chipsets. If you think I am wrong, feel free to propose a patch. [1] Here's PDF: http://people.freedesktop.org/~mareko/ | ||||
* | | r300/compiler: make the max number of fragment shader temporaries adjustable | Marek Olšák | 2010-04-05 | 5 | -5/+5 |
| | | |||||
* | | r300g: is_npot -> uses_pitch | Marek Olšák | 2010-04-05 | 4 | -7/+9 |
| | | |||||
* | | r300g: enable conditional rendering also for SWTCL | Marek Olšák | 2010-04-05 | 1 | -0/+8 |
| | | |||||
* | | glut: Include X11 headers and libraries in SCons build. | Vinson Lee | 2010-04-04 | 1 | -0/+1 |
| | | | | | | | | Fixes Mac OS X SCons build. | ||||
* | | glew: Include X11 headers and libraries in SCons build. | Vinson Lee | 2010-04-04 | 1 | -0/+1 |
| | | | | | | | | Fixes Mac OS X SCons build. | ||||
* | | mesa: don't turn on GL_EXT_transform_feedback yet | Brian Paul | 2010-04-04 | 1 | -1/+1 |
| | | |||||
* | | st/mesa: call pipe_context::draw_arrays/elements_instanced() | Brian Paul | 2010-04-04 | 1 | -4/+19 |
| | | |||||
* | | mesa: implement core Mesa support for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 7 | -4/+118 |
| | | |||||
* | | mesa: new validation functions for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 2 | -1/+116 |
| | | |||||
* | | mesa: new extension flag for GL_EXT/ARB_draw_instanced | Brian Paul | 2010-04-04 | 2 | -0/+3 |
| | | |||||
* | | glapi: regenerated files for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 9 | -4811/+5020 |
| | | |||||
* | | glapi: plug in ARB_draw_instanced.xml | Brian Paul | 2010-04-04 | 2 | -0/+3 |
| | | |||||
* | | glapi: ARB_draw_instanced.xml file | Brian Paul | 2010-04-04 | 1 | -0/+69 |
| | | |||||
* | | Merge branch '7.8' | Ian Romanick | 2010-04-04 | 4 | -8/+65 |
|\| | |||||
| * | util: Use GCC atomic bultins on GCC 4.1 and higher only. | Vinson Lee | 2010-04-03 | 1 | -1/+1 |
| | | |||||
| * | glx: Fix compilation errors on non-GLX_DIRECT_RENDERING builds. | Vinson Lee | 2010-04-02 | 1 | -2/+39 |
| | | | | | | | | | | Add ifdef guards around variables of types defined only for GLX_DIRECT_RENDERING. | ||||
| * | st/vega: Do not depend on libm. | Chia-I Wu | 2010-04-02 | 1 | -2/+3 |
| | | | | | | | | | | This fixes the "no rule to make target -lm" error on darwin, reported by Jeremy Huddleston. | ||||
| * | GLX/DRI2: pass GLX drawable ID to dri2InvalidateBuffers | Jesse Barnes | 2010-04-01 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | The IDs will be the same in the case where an X window is used directly as a GLX drawable, but will fail if a new GLX drawable is created explicitly, as with glxgears_fbconfig. Fixes fdo bug #27190. | ||||
| * | Revert accidental commits from the xquartz tree | Jeremy Huddleston | 2010-04-01 | 70 | -51303/+94 |
| | | | | | | | | | | | | | | | | | | | | | | This reverts commit 9aadc793f3db64cefa0b08f18abad424a659dacc. This reverts commit 69ea4e7718efb60b6b0d795a355cebd6712ceac1. This reverts commit dbe8b013936d977ec63d6607bfd2fc6772d29787. This reverts commit 23215ef4d60a86d9f3b3fdc08e3fdadc59e98890. This reverts commit 9495e3703062d1ddaf3161f4efc23f0b51284d9b. This reverts commit 0594cf70883b64692ba617d85f4f9b4e636e5c2b. This reverts commit 86a7978d37393ee34f876569ac06ffdb8d7289ae. This reverts commit 437902ce978cde9a0e1aa260f12dc232a8501c42. | ||||
| * | apple: Use mesa gl.h rather than generating one. | Jeremy Huddleston | 2010-04-01 | 7 | -181/+48 |
| | | | | | | | | Signed-off-by: Jeremy Huddleston <[email protected]> | ||||
| * | apple: Integrate our libGL into the existing build system better | Jeremy Huddleston | 2010-04-01 | 3 | -74/+113 |
| | | | | | | | | Signed-off-by: Jeremy Huddleston <[email protected]> | ||||
| * | apple: Change ifdefs for DRI to be DRI && !APPLE | Jeremy Huddleston | 2010-04-01 | 16 | -121/+106 |
| | | | | | | | | Signed-off-by: Jeremy Huddleston <[email protected]> | ||||
| * | apple: Remove duplicate headers that already exist in mesa. | Jeremy Huddleston | 2010-04-01 | 7 | -20231/+0 |
| | | | | | | | | Signed-off-by: Jeremy Huddleston <[email protected]> | ||||
| * | apple: Initial import of libGL for OSX from AppleSGLX svn repository. | Jeremy Huddleston | 2010-04-01 | 70 | -38/+71587 |
| | | | | | | | | Signed-off-by: Jeremy Huddleston <[email protected]> | ||||
| * | glx: Fix compilation errors on non-GLX_DIRECT_RENDERING builds. | Vinson Lee | 2010-04-01 | 1 | -3/+22 |
| | | | | | | | | | | driContext field for __GLXcontextRec struct is only defined if GLX_DIRECT_RENDERING is set. | ||||
| * | st/mesa: use BITFIELD64_BIT to access shader OutputsWritten in more places | Ben Skeggs | 2010-03-31 | 2 | -4/+4 |
| | | |||||
* | | st/mesa: Implement GL_OES_EGL_image driver hooks. | Chia-I Wu | 2010-04-04 | 7 | -0/+245 |
| | | | | | | | | | | Use st_manager::get_egl_image to look up GLeglImageOES and implement EGLImageTargetTexture2D and EGLImageTargetRenderbufferStorage. | ||||
* | | st/egl: Implement get_egl_image hook. | Chia-I Wu | 2010-04-04 | 1 | -0/+32 |
| | | | | | | | | | | This hook may be used by rendering state trackers to implement EGLImage extensions. | ||||
* | | r300g: fix TFP stride override. | Dave Airlie | 2010-04-04 | 1 | -1/+1 |
| | | | | | | | | | | | | We should use pitch for the overriden state, fixes one half of the tfp test. Signed-off-by: Dave Airlie <[email protected]> | ||||
* | | r300g: add conditional rendering | Marek Olšák | 2010-04-04 | 3 | -0/+33 |
| | | |||||
* | | r300g: add r4xx fragment shader registers | Marek Olšák | 2010-04-04 | 1 | -1/+47 |
| | | | | | | | | In case anyone needs it, it's here. | ||||
* | | r300g: do not use the c++ template keyword | Marek Olšák | 2010-04-04 | 2 | -27/+27 |
| | | | | | | | | It makes life for some code browsing utilites easier. | ||||
* | | r300g: properly setup textures from X server | Marek Olšák | 2010-04-04 | 1 | -4/+3 |
| | | | | | | | | The setup needs be done after querying tiling flags. |