Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | swrast: Correct include for mtypes.h | Jakob Bornecrantz | 2010-05-03 | 1 | -1/+1 |
| | |||||
* | gallium/util: print \n after DXTn printf | Luca Barbieri | 2010-05-03 | 1 | -2/+2 |
| | | | | | | | Re-add commit 2d65a7caf97684aa654088c76a74b632fbd685fa Signed-off-by: Xavier Chantry <[email protected]> Signed-off-by: José Fonseca <[email protected]> | ||||
* | llvmpipe: add lp_test_* to .gitignore | Xavier Chantry | 2010-05-03 | 1 | -0/+4 |
| | | | | | Signed-off-by: Xavier Chantry <[email protected]> Signed-off-by: José Fonseca <[email protected]> | ||||
* | svga: Remove the screen private context. | José Fonseca | 2010-05-03 | 11 | -106/+63 |
| | | | | | | All affected operations have already been moved to context. More cleanup work can be done, in particular with the buffer transfers. | ||||
* | svga: Remove empty file. | José Fonseca | 2010-05-03 | 1 | -2/+0 |
| | |||||
* | svga: Update flags documentation. | José Fonseca | 2010-05-03 | 1 | -8/+5 |
| | |||||
* | softpipe: Fix alpha blending for formats without alpha channel. | José Fonseca | 2010-05-03 | 1 | -60/+108 |
| | | | | | Don't use the dst alpha channel from the tile cache when it does not exist in the true format. | ||||
* | llvmpipe: Fix alpha blending for formats without alpha channel. | José Fonseca | 2010-05-03 | 1 | -2/+51 |
| | | | | | Don't use the dst alpha channel from the swizzled tile when it does not exist in the true format. | ||||
* | Update drisw state tracker to use new API aware context create | Xavier Chantry | 2010-05-02 | 2 | -2/+6 |
| | | | | | | | | | Even though swrast defines its own __DriverAPIRec it still shares the driCreateNewContext() implementation from dri_util.c. So the CreateContext prototypes have to match in the two __DriverAPIRecs. Reviewed-by: Jakob Bornecrantz <[email protected]> Signed-off-by: Xavier Chantry <[email protected]> | ||||
* | svga: Include svga_surface.h in svga_screen.c. | Vinson Lee | 2010-05-02 | 1 | -0/+1 |
| | | | | Fixes svga_screen_init_surface_functions implicit declaration warning. | ||||
* | r300g: Remove unnecessary header. | Vinson Lee | 2010-05-02 | 1 | -1/+0 |
| | |||||
* | Update dri state tracker to use new API aware context create | Xavier Chantry | 2010-05-02 | 2 | -2/+4 |
| | |||||
* | mesa: Include api_exec.h in dlist.c. | Vinson Lee | 2010-05-02 | 1 | -0/+1 |
| | | | | Fixes _mesa_alloc_dispatch_table implicit declaration warning. | ||||
* | r300g: do not validate buffers in check_cs | Marek Olšák | 2010-05-02 | 1 | -1/+1 |
| | | | | | It's already done in r300_emit_buffer_validate. This also fixes Total Annihilation 3D on debug builds at least. | ||||
* | r300g: fix surface_copy for compressed formats | Marek Olšák | 2010-05-02 | 1 | -1/+2 |
| | | | | No accelerated blitting for these, it's too messy. | ||||
* | configure.ac: Fix test for whether to build src/gles | Kristian Høgsberg | 2010-05-02 | 1 | -1/+1 |
| | |||||
* | mesa: Include mfeatures.h before testing feature macros | Kristian Høgsberg | 2010-05-02 | 1 | -0/+2 |
| | |||||
* | mesa: Only compile ES files when ES1 or ES2 are selected | Kristian Høgsberg | 2010-05-02 | 3 | -6/+18 |
| | | | | | This still requieres manual generation of the es1 and es2 glapis and is disabled by default. | ||||
* | mesa: #ifdef out more remap_table related code when disabled. | José Fonseca | 2010-05-02 | 2 | -3/+6 |
| | | | | Seems to get everything building again here. | ||||
* | retrace: Add sampler_view_destroy | José Fonseca | 2010-05-02 | 1 | -0/+7 |
| | |||||
* | trace: Fix typo in method name. | José Fonseca | 2010-05-02 | 1 | -1/+1 |
| | |||||
* | Merge branch 'gles2-2' | Kristian Høgsberg | 2010-05-02 | 99 | -4257/+5042 |
|\ | | | | | | | | | Conflicts: src/mesa/drivers/dri/common/dri_util.h | ||||
| * | Hook in install rules for es1 and es2 | Kristian Høgsberg | 2010-05-02 | 3 | -0/+12 |
| | | |||||
| * | Add glesv2.pc and glesv1_cm.pc pkg-config files for ES 1 and 2 | Kristian Høgsberg | 2010-05-02 | 3 | -7/+26 |
| | | |||||
| * | st/mesa: Create context for API_OPENGL as first priority | Kristian Høgsberg | 2010-05-02 | 1 | -4/+4 |
| | | |||||
| * | gles: Build libGLESv1_CM.so and libGLESv2.so from glapi files | Kristian Høgsberg | 2010-04-28 | 4 | -0/+118 |
| | | |||||
| * | intel: Only register ES2 extensions for ES2 contexts | Kristian Høgsberg | 2010-04-28 | 7 | -2/+108 |
| | | |||||
| * | configure.ac: Add options to enable GLES1/2 API support | Kristian Høgsberg | 2010-04-28 | 4 | -0/+34 |
| | | |||||
| * | intel: Advertise GLES1/2 for i915+ when enabled | Kristian Høgsberg | 2010-04-28 | 1 | -0/+12 |
| | | |||||
| * | dri: Add DRI entrypoints to create a context for a given API | Kristian Høgsberg | 2010-04-28 | 8 | -13/+22 |
| | | |||||
| * | egl_dri2: Use new DRI API to create a GLES1/2 context when asked to | Kristian Høgsberg | 2010-04-28 | 1 | -10/+59 |
| | | |||||
| * | dri: Add DRI entrypoints to create a context for a given API | Kristian Høgsberg | 2010-04-28 | 27 | -32/+124 |
| | | |||||
| * | st/mesa: Move st_cb_drawtex.c to the mesa state tracker | Kristian Høgsberg | 2010-04-28 | 4 | -11/+2 |
| | | |||||
| * | es: Drop es specific enums.c | Kristian Høgsberg | 2010-04-28 | 2 | -22/+3 |
| | | |||||
| * | glapi: Regenerate enums.c for all APIs | Kristian Høgsberg | 2010-04-28 | 1 | -3147/+3449 |
| | | |||||
| * | glapi: Update gl_enum.py to generate enum tables for multiple APIs | Kristian Høgsberg | 2010-04-28 | 2 | -13/+19 |
| | | |||||
| * | mesa: Drop unused _mesa_init_drawtex_dispatch() | Kristian Høgsberg | 2010-04-28 | 2 | -23/+0 |
| | | |||||
| * | mesa: Move drawtex functionality to main/ | Kristian Høgsberg | 2010-04-28 | 4 | -2/+2 |
| | | |||||
| * | mesa: Move glQueryMatrixxOES() implementation to core mesa | Kristian Høgsberg | 2010-04-28 | 3 | -1/+1 |
| | | |||||
| * | mesa: Move GLES1 texgen functions to texgen.c | Kristian Høgsberg | 2010-04-28 | 4 | -74/+43 |
| | | |||||
| * | mesa: Move support for paletted textures to main/teximage.c | Kristian Høgsberg | 2010-04-28 | 7 | -49/+90 |
| | | |||||
| * | mesa: Handle GL_TEXTURE_GEN_STR_OES in _mesa_Enable() | Kristian Høgsberg | 2010-04-28 | 6 | -96/+37 |
| | | |||||
| * | mesa: Move get_es*.c to main/ | Kristian Høgsberg | 2010-04-27 | 5 | -12/+7 |
| | | |||||
| * | es: Prefix the get* functions with _es1/2 so they don't conflict | Kristian Høgsberg | 2010-04-27 | 5 | -19/+50 |
| | | |||||
| * | mesa: Move GL_RGB565 workaround into fbobject.c | Kristian Høgsberg | 2010-04-27 | 5 | -39/+23 |
| | | |||||
| * | mesa: Move GLES1/2 vbo entrypoints to vbo_exec_api.c | Kristian Høgsberg | 2010-04-27 | 4 | -110/+81 |
| | | | | | | | | This let's us drop stubs.c. | ||||
| * | mesa: Move GLES2 shader stubs to main/shaders.c | Kristian Høgsberg | 2010-04-27 | 3 | -23/+39 |
| | | |||||
| * | mesa: Move api_exec_es*.c into mesa/main | Kristian Høgsberg | 2010-04-27 | 12 | -32/+114 |
| | | | | | | | | | | This requires renaming a few functions to have unique names so that they can all live within the same driver. | ||||
| * | mesa: Move references to main/remap_helper.h to api_exec.c | Kristian Høgsberg | 2010-04-27 | 6 | -63/+100 |
| | | |||||
| * | mesa: Move struct _glapi_table allocation out of context.c | Kristian Høgsberg | 2010-04-22 | 6 | -22/+48 |
| | | | | | | | | | | | | We now allocate the table from api_exec.c and dlist.c where we fill out the table. This way, context.c doesn't need to know the actual contents of struct _glapi_table. |