Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-24 | mesa: Handle FEATURE_es2_glsl differences at runtime too | Kristian Høgsberg | |
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 | |||
2010-05-21 | mesa: fix warnings about missing initializers in get.c table | Brian Paul | |
2010-05-21 | Add __DragonFly__ in querymatrix for fpclassify() | David Shao | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-05-19 | fpclassify is available on C99-compliant Solaris releases too | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-05-15 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-05-14 | mesa: silence void * / func * conversion warnings | Brian Paul | |
2010-05-14 | mesa: enum bitfields are a gcc-only feature, use GLubyte | Brian Paul | |
2010-05-14 | mesa: print enum name instead of hexadecimal value in glGet errors | Brian Paul | |
2010-05-14 | mesa: another transform feedback error check, 80-col wrapping | Brian Paul | |
2010-05-14 | mesa: fpclassify dummy definition is not needed on FreeBSD. | Alex Kozlov | |
2010-05-13 | mesa: Remove no-op wrappers around trig functions. | Eric Anholt | |
2010-05-13 | mesa: Remove _mesa_pow(), which is always just pow(). | Eric Anholt | |
2010-05-13 | mesa: silence compiler warning | Alan Hourihane | |
2010-05-12 | mesa: Make FEATURE_ATI_fragment_shader more modular. | Chia-I Wu | |
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. | |||
2010-05-12 | mesa/es: Update sources.mak and fix the build. | Chia-I Wu | |
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. | |||
2010-05-12 | mesa: Add dummy _mesa_lookup_query_object to queryobj.h. | Chia-I Wu | |
This allows condrender.c to be compiled without FEATURE_queryobj. | |||
2010-05-12 | mesa: Make FEATURE_EXT_transform_feedback more modular. | Chia-I Wu | |
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. | |||
2010-05-11 | mesa: fix error message strings | Brian Paul | |
2010-05-11 | mesa: added glGet code for GL_ARB_transform_feedback2 | Brian Paul | |
2010-05-11 | mesa: remove unused header | Brian Paul | |
2010-05-11 | mesa: remove unused header | Brian Paul | |
2010-05-11 | mesa: Optimize get.c by using a table-driven approach | Kristian Høgsberg | |
2010-05-10 | mesa: s/uint/GLuint/ in _mesa_BindTransformFeedback prototype. | Vinson Lee | |
From http://www.opengl.org/registry/api/glext.h GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); Fixes MinGW build. | |||
2010-05-10 | mesa: more transform feedback infrastructure | Brian Paul | |
Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects. | |||
2010-05-09 | mesa: Update comments in get_gen_es.py. | Vinson Lee | |
2010-05-09 | mesa: fix typos, comment in signed 16-bit tex fetch code | Brian Paul | |
2010-05-09 | mesa: added unsigned 16-bit/channel tex format | Brian Paul | |
2010-05-09 | mesa: added comments for signed 16-bit formats | Brian Paul | |
2010-05-09 | mesa: use GL_RGBA16_SNORM for accum buffer | Brian Paul | |
2010-05-09 | mesa: added texstore function for signed 16-bit formats | Brian Paul | |
2010-05-09 | mesa: added UNCLAMPED_FLOAT_TO_SHORT macro | Brian Paul | |
2010-05-09 | mesa: add missing cases for signed 16-bit formats | Brian Paul | |
2010-05-07 | mesa: remove driver hooks for GetFloat/Integer/Doublev, etc | Brian Paul | |
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. | |||
2010-05-07 | mesa: fpclassify dummy definition is not needed on cygwin | Jon TURNEY | |
fpclassify is provided by math.h Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-05-07 | glapi: Move to src/mapi/. | Chia-I Wu | |
Move glapi to src/mapi/{glapi,es1api,es2api}. | |||
2010-05-06 | es: Ignores | Jakob Bornecrantz | |
2010-05-05 | mesa: fpclassify dummy definition not needed on Mac OS X. | Vinson Lee | |
2010-05-04 | mesa: remove some color index code | Brian Paul | |
2010-05-04 | mesa: remove unused renderbuffer adaptor code | Brian Paul | |
2010-05-04 | mesa: remove renderbuffer adaptor calls | Brian Paul | |
Was only used for OSMesa but no longer needed. | |||
2010-05-05 | mesa: Fix build of ES overlay. | Chia-I Wu | |
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. | |||
2010-05-04 | mesa: add a dummy definition for fpclassify() if needed | Brian Paul | |
2010-05-04 | mesa: remove trailing comma in enum list | Brian Paul | |
Some compilers complain about this. | |||
2010-05-03 | mesa: Only initialize TNL for OpenGL | Kristian Høgsberg | |
2010-05-03 | mesa: Only initialize save dispatch table for OpenGL | Kristian Høgsberg | |
2010-05-03 | mesa: increase MAX_DRAW_BUFFERS to 8 | Brian Paul | |
Required for GL 3.x | |||
2010-05-02 | mesa: Include api_exec.h in dlist.c. | Vinson Lee | |
Fixes _mesa_alloc_dispatch_table implicit declaration warning. | |||
2010-05-02 | mesa: Include mfeatures.h before testing feature macros | Kristian Høgsberg | |
2010-05-02 | mesa: #ifdef out more remap_table related code when disabled. | José Fonseca | |
Seems to get everything building again here. | |||
2010-05-02 | Merge branch 'gles2-2' | Kristian Høgsberg | |
Conflicts: src/mesa/drivers/dri/common/dri_util.h |