summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
Commit message (Collapse)AuthorAgeFilesLines
* mesa: #ifdef out more remap_table related code when disabled.José Fonseca2010-05-022-3/+6
| | | | Seems to get everything building again here.
* Merge branch 'gles2-2'Kristian Høgsberg2010-05-0235-3275/+11715
|\ | | | | | | | | Conflicts: src/mesa/drivers/dri/common/dri_util.h
| * glapi: Regenerate enums.c for all APIsKristian Høgsberg2010-04-281-3147/+3449
| |
| * mesa: Drop unused _mesa_init_drawtex_dispatch()Kristian Høgsberg2010-04-282-23/+0
| |
| * mesa: Move drawtex functionality to main/Kristian Høgsberg2010-04-282-0/+225
| |
| * mesa: Move glQueryMatrixxOES() implementation to core mesaKristian Høgsberg2010-04-281-0/+199
| |
| * mesa: Move GLES1 texgen functions to texgen.cKristian Høgsberg2010-04-282-0/+43
| |
| * mesa: Move support for paletted textures to main/teximage.cKristian Høgsberg2010-04-285-3/+276
| |
| * mesa: Handle GL_TEXTURE_GEN_STR_OES in _mesa_Enable()Kristian Høgsberg2010-04-284-4/+37
| |
| * mesa: Move get_es*.c to main/Kristian Høgsberg2010-04-271-0/+807
| |
| * es: Prefix the get* functions with _es1/2 so they don't conflictKristian Høgsberg2010-04-274-7/+41
| |
| * mesa: Move GL_RGB565 workaround into fbobject.cKristian Høgsberg2010-04-273-0/+23
| |
| * mesa: Move GLES2 shader stubs to main/shaders.cKristian Høgsberg2010-04-272-0/+39
| |
| * mesa: Move api_exec_es*.c into mesa/mainKristian Høgsberg2010-04-278-5/+6078
| | | | | | | | | | 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.cKristian Høgsberg2010-04-274-53/+72
| |
| * mesa: Move struct _glapi_table allocation out of context.cKristian Høgsberg2010-04-225-20/+38
| | | | | | | | | | | | 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.
| * mesa: Compute extension string according to APIKristian Høgsberg2010-04-221-15/+111
| | | | | | | | We can now stop special casing glGetString() and drop specials_es*.c.
| * es2: Move over es2 code to compute extensionsKristian Høgsberg2010-04-221-3/+106
| |
| * main: Report GL_SHADING_LANGUAGE_VERSION according to APIKristian Høgsberg2010-04-221-10/+27
| |
| * mesa: Compute GL version according to APIKristian Høgsberg2010-04-221-21/+107
| |
| * mesa: Move API specific context intialization into context.cKristian Høgsberg2010-04-222-6/+25
| |
| * mesa: Track the OpenGL API we're implementing in the contextKristian Høgsberg2010-04-223-11/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This introduces a new way to create or initialize a context: _mesa_create_context_for_api and _mesa_initialize_context_for_api which in addition to the current arguments take an api enum to indicate which OpenGL API the context should implement. At this point the API field in GLcontext isn't used anywhere, but later commits will key certain functionality off of it. The _mesa_create_context and _mesa_initialize_context functions are kept in place as wrappers around the *_for_api versions, passing in API_OPENGL to get the same behavior as before.
* | mesa: s/sprintf/_mesa_snprintf/Vinson Lee2010-05-026-12/+12
| |
* | mesa: added _mesa_print_framebuffer() for debuggingBrian Paul2010-04-292-0/+44
| |
* | mesa: move/rename is_depth_or_stencil_format()Brian Paul2010-04-272-0/+29
| | | | | | | | Put it with other, similar functions.
* | mesa: start adding GL 3.1 signed normalized texture formatsBrian Paul2010-04-266-8/+470
| |
* | mesa: simplify some code in _mesa_generate_mipmap()Brian Paul2010-04-231-19/+10
| |
* | mesa: make is_compressed_format() non-staticBrian Paul2010-04-233-38/+40
| |
* | mesa: faster, simpler is_compressed_format()Brian Paul2010-04-231-18/+24
| |
* | mesa: sort texel fetch/store table by format indexBrian Paul2010-04-221-250/+256
| |
* | Merge branch '7.8'Brian Paul2010-04-221-8/+8
|\ \ | |/ |/| | | | | | | Conflicts: src/mesa/state_tracker/st_format.c
| * mesa: fix conversion errors in signed_rgba8888[rev] texel fetchBrian Paul2010-04-221-8/+8
| | | | | | | | | | | | Without the cast the returned texel colors were wrong. Also, we don't need the "& 0xff" part anymore. Bug found by Vinson Lee.
* | mesa: do version checking for GL 3.x queriesBrian Paul2010-04-202-8/+74
| |
* | mesa: API and state for GL 3.1 primitive restartBrian Paul2010-04-206-0/+76
| |
* | mesa: add GL 3.2 GL_CONTEXT_PROFILE_MASK queryBrian Paul2010-04-204-5/+27
| |
* | mesa: remove some commentsBrian Paul2010-04-201-12/+10
| |
* | mesa: better, smaller error handling code for glGet*()Brian Paul2010-04-202-623/+645
| | | | | | | | get.o is about 17% smaller.
* | mesa: better, smaller error handling code for glEnable/Disable/IsEnabled()Brian Paul2010-04-201-24/+29
| | | | | | | | | | Use a goto instead of replicating the _mesa_error() call many times. enable.o is about 15% smaller.
* | mesa: raise GL_INVALID_OPERATION for glReadPixels(GL_COLOR_INDEX)Brian Paul2010-04-201-0/+6
| | | | | | | | We no longer support CI-mode color buffers so this is always an error.
* | Merge branch '7.8'Jesse Barnes2010-04-192-3/+6
|\|
| * mesa: Fix build with gcc 3.3.Matthieu Herrb2010-04-192-3/+6
| | | | | | | | Signed-off-by: Brian Paul <[email protected]>
* | mesa: Add missing format specifiers in error strings.Vinson Lee2010-04-151-13/+13
| |
* | ffvertex: don't touch tex coords if coord replace is enabled.Dave Airlie2010-04-131-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The fixed function vertex program shouldn't need to deal or touch tex coords if stuffing is enabled. Though I'm not 100% this won't break assumption made elsewhere it seems like the correct thing to do, and makes r300g point sprites a lot easier to implement. draw: fix point-sprite when vertex program is used. This commit regressed draw, so fix it as well to help bisection. Signed-off-by: Dave Airlie <[email protected]>
* | Fix copyright headers.Chia-I Wu2010-04-102-10/+12
| | | | | | | | | | | | Update the warranty disclaimer to use the more general "THE AUTHORS OR COPYRIGHT HOLDERS". This is done manually on files created by me. Hope that I do not miss anything.
* | Merge remote branch 'origin/7.8'Dave Airlie2010-04-082-18/+30
|\| | | | | | | | | | | | | Conflicts: Makefile configs/default src/mesa/main/version.h
| * texenvprogram: fix for ARB_draw_buffers.Dave Airlie2010-04-081-15/+28
| | | | | | | | | | | | | | piglit has a test called fbo-drawbuffers, this fails for me on r300g, and fixing the texenv program to use the DATA outputs fixes it. Signed-off-by: Dave Airlie <[email protected]>
| * mesa: set version string to 7.8.1Ian Romanick2010-04-051-2/+2
| |
| * mesa: update_arrays() depends on program state.Henri Verbeet2010-04-051-3/+2
| | | | | | | | | | | | It uses ctx->VertexProgram._Current. Signed-off-by: Brian Paul <[email protected]>
* | mesa: Add OES_EGL_image to extension list.Chia-I Wu2010-04-064-0/+18
| |
* | mesa: remove unused varBrian Paul2010-04-051-2/+1
| | | | | | | | Fixes a coverity warnings.