Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: added _mesa_VertexAttribIPointer() | Brian Paul | 2010-05-25 | 2 | -0/+24 |
| | |||||
* | mesa: new GL 3.0 VertexAttrib commands | Brian Paul | 2010-05-25 | 1 | -0/+174 |
| | | | | Still need to plug in API dispatch... | ||||
* | mesa: make a bunch of shader API functions static | Brian Paul | 2010-05-25 | 3 | -377/+173 |
| | |||||
* | mesa: display list support for uint uniforms | Brian Paul | 2010-05-25 | 1 | -1/+199 |
| | | | | Still need to plug into dispatcher... | ||||
* | mesa: unsigned int uniform functions (GL3) | Brian Paul | 2010-05-25 | 2 | -0/+96 |
| | |||||
* | mesa: Reenable check for GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT | Kristian Høgsberg | 2010-05-24 | 1 | -21/+23 |
| | | | | | | | | The check was disabled when FEATURE_OES_framebuffer_object was enabled, since that used to mean we weren't implementing regular OpenGL semantics. Now that we can compile in support for multiple APIs, change the #ifdef to compile the check in when FEATURE_GL is enabled and enable the check for contexts that implement OpenGL at runtime. | ||||
* | mesa: Handle FEATURE_es2_glsl differences at runtime too | Kristian Høgsberg | 2010-05-24 | 1 | -12/+22 |
| | | | | | | | Now that we can support different APIs at runtime, we need to check the context for the API we're currently providing as well. https://bugs.freedesktop.org/show_bug.cgi?id=28194 | ||||
* | mesa: fix warnings about missing initializers in get.c table | Brian Paul | 2010-05-21 | 1 | -326/+330 |
| | |||||
* | Add __DragonFly__ in querymatrix for fpclassify() | David Shao | 2010-05-21 | 1 | -1/+1 |
| | | | | Signed-off-by: Brian Paul <[email protected]> | ||||
* | fpclassify is available on C99-compliant Solaris releases too | Alan Coopersmith | 2010-05-19 | 1 | -1/+2 |
| | | | | | Signed-off-by: Alan Coopersmith <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | mesa: Remove unnecessary header. | Vinson Lee | 2010-05-15 | 1 | -2/+0 |
| | |||||
* | mesa: silence void * / func * conversion warnings | Brian Paul | 2010-05-14 | 1 | -5/+10 |
| | |||||
* | mesa: enum bitfields are a gcc-only feature, use GLubyte | Brian Paul | 2010-05-14 | 1 | -2/+2 |
| | |||||
* | mesa: print enum name instead of hexadecimal value in glGet errors | Brian Paul | 2010-05-14 | 1 | -4/+9 |
| | |||||
* | mesa: another transform feedback error check, 80-col wrapping | Brian Paul | 2010-05-14 | 1 | -3/+9 |
| | |||||
* | mesa: fpclassify dummy definition is not needed on FreeBSD. | Alex Kozlov | 2010-05-14 | 1 | -1/+1 |
| | |||||
* | mesa: Remove no-op wrappers around trig functions. | Eric Anholt | 2010-05-13 | 3 | -51/+1 |
| | |||||
* | mesa: Remove _mesa_pow(), which is always just pow(). | Eric Anholt | 2010-05-13 | 7 | -18/+6 |
| | |||||
* | mesa: silence compiler warning | Alan Hourihane | 2010-05-13 | 1 | -1/+3 |
| | |||||
* | mesa: Make FEATURE_ATI_fragment_shader more modular. | Chia-I Wu | 2010-05-12 | 1 | -18/+1 |
| | | | | | | This allows atifragshader.h to be used without knowing if FEATURE_ATI_fragment_shader is enabled. As a result, atifragshader.c is removed from the omit list in ES overlay. | ||||
* | mesa/es: Update sources.mak and fix the build. | Chia-I Wu | 2010-05-12 | 1 | -0/+6 |
| | | | | | | | | Remove sources that are feature-aware from the omit list. x86 -O0 build is ~12KiB smaller afther making those sources feature-aware. Also, remove get.c from the omit list as get_es[12].c have been merged to it. | ||||
* | mesa: Add dummy _mesa_lookup_query_object to queryobj.h. | Chia-I Wu | 2010-05-12 | 1 | -0/+6 |
| | | | | This allows condrender.c to be compiled without FEATURE_queryobj. | ||||
* | mesa: Make FEATURE_EXT_transform_feedback more modular. | Chia-I Wu | 2010-05-12 | 3 | -10/+61 |
| | | | | | | This allows transformfeedback.h and st_cb_xformfb.h to be included and used without knowing if FEATURE_EXT_transform_feedback is enabled. Fix build of ES overlay. | ||||
* | mesa: fix error message strings | Brian Paul | 2010-05-11 | 1 | -5/+5 |
| | |||||
* | mesa: added glGet code for GL_ARB_transform_feedback2 | Brian Paul | 2010-05-11 | 1 | -0/+18 |
| | |||||
* | mesa: remove unused header | Brian Paul | 2010-05-11 | 1 | -1/+0 |
| | |||||
* | mesa: remove unused header | Brian Paul | 2010-05-11 | 1 | -1/+0 |
| | |||||
* | mesa: Optimize get.c by using a table-driven approach | Kristian Høgsberg | 2010-05-11 | 10 | -10157/+2351 |
| | |||||
* | mesa: s/uint/GLuint/ in _mesa_BindTransformFeedback prototype. | Vinson Lee | 2010-05-10 | 2 | -2/+2 |
| | | | | | | | From http://www.opengl.org/registry/api/glext.h GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); Fixes MinGW build. | ||||
* | mesa: more transform feedback infrastructure | Brian Paul | 2010-05-10 | 7 | -32/+549 |
| | | | | | Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects. | ||||
* | mesa: Update comments in get_gen_es.py. | Vinson Lee | 2010-05-09 | 1 | -2/+2 |
| | |||||
* | mesa: fix typos, comment in signed 16-bit tex fetch code | Brian Paul | 2010-05-09 | 1 | -4/+4 |
| | |||||
* | mesa: added unsigned 16-bit/channel tex format | Brian Paul | 2010-05-09 | 6 | -10/+127 |
| | |||||
* | mesa: added comments for signed 16-bit formats | Brian Paul | 2010-05-09 | 1 | -4/+4 |
| | |||||
* | mesa: use GL_RGBA16_SNORM for accum buffer | Brian Paul | 2010-05-09 | 2 | -1/+3 |
| | |||||
* | mesa: added texstore function for signed 16-bit formats | Brian Paul | 2010-05-09 | 1 | -4/+74 |
| | |||||
* | mesa: added UNCLAMPED_FLOAT_TO_SHORT macro | Brian Paul | 2010-05-09 | 1 | -0/+3 |
| | |||||
* | mesa: add missing cases for signed 16-bit formats | Brian Paul | 2010-05-09 | 1 | -0/+13 |
| | |||||
* | mesa: remove driver hooks for GetFloat/Integer/Doublev, etc | Brian Paul | 2010-05-07 | 4 | -46/+0 |
| | | | | | Once upon a time some drivers hooked into these for GL_HP_occlusion_test and GL_OES_read_format. They're not being used anymore so get rid of them. | ||||
* | mesa: fpclassify dummy definition is not needed on cygwin | Jon TURNEY | 2010-05-07 | 1 | -1/+1 |
| | | | | | | | fpclassify is provided by math.h Signed-off-by: Jon TURNEY <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | glapi: Move to src/mapi/. | Chia-I Wu | 2010-05-07 | 1 | -4/+4 |
| | | | | Move glapi to src/mapi/{glapi,es1api,es2api}. | ||||
* | es: Ignores | Jakob Bornecrantz | 2010-05-06 | 1 | -0/+4 |
| | |||||
* | mesa: fpclassify dummy definition not needed on Mac OS X. | Vinson Lee | 2010-05-05 | 1 | -0/+4 |
| | |||||
* | mesa: remove some color index code | Brian Paul | 2010-05-04 | 1 | -19/+0 |
| | |||||
* | mesa: remove unused renderbuffer adaptor code | Brian Paul | 2010-05-04 | 2 | -605/+0 |
| | |||||
* | mesa: remove renderbuffer adaptor calls | Brian Paul | 2010-05-04 | 1 | -24/+0 |
| | | | | Was only used for OSMesa but no longer needed. | ||||
* | mesa: Fix build of ES overlay. | Chia-I Wu | 2010-05-05 | 2 | -4/+30 |
| | | | | | | | ES overlay is built with FEATURE_ES1 or FEATURE_ES2, and is built without FEATURE_GL. Fix the build by always building OpenGL ES sources, but test for FEATURE_ES1 or FEATURE_ES2. Also, define symbols that are missing because FEATURE_GL is not defined. | ||||
* | mesa: add a dummy definition for fpclassify() if needed | Brian Paul | 2010-05-04 | 1 | -0/+10 |
| | |||||
* | mesa: remove trailing comma in enum list | Brian Paul | 2010-05-04 | 1 | -1/+1 |
| | | | | Some compilers complain about this. | ||||
* | mesa: Only initialize TNL for OpenGL | Kristian Høgsberg | 2010-05-03 | 1 | -4/+5 |
| |