summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
Commit message (Collapse)AuthorAgeFilesLines
* mesa: fix warnings about missing initializers in get.c tableBrian Paul2010-05-211-326/+330
|
* Add __DragonFly__ in querymatrix for fpclassify()David Shao2010-05-211-1/+1
| | | | Signed-off-by: Brian Paul <[email protected]>
* fpclassify is available on C99-compliant Solaris releases tooAlan Coopersmith2010-05-191-1/+2
| | | | | Signed-off-by: Alan Coopersmith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* mesa: Remove unnecessary header.Vinson Lee2010-05-151-2/+0
|
* mesa: silence void * / func * conversion warningsBrian Paul2010-05-141-5/+10
|
* mesa: enum bitfields are a gcc-only feature, use GLubyteBrian Paul2010-05-141-2/+2
|
* mesa: print enum name instead of hexadecimal value in glGet errorsBrian Paul2010-05-141-4/+9
|
* mesa: another transform feedback error check, 80-col wrappingBrian Paul2010-05-141-3/+9
|
* mesa: fpclassify dummy definition is not needed on FreeBSD.Alex Kozlov2010-05-141-1/+1
|
* mesa: Remove no-op wrappers around trig functions.Eric Anholt2010-05-133-51/+1
|
* mesa: Remove _mesa_pow(), which is always just pow().Eric Anholt2010-05-137-18/+6
|
* mesa: silence compiler warningAlan Hourihane2010-05-131-1/+3
|
* mesa: Make FEATURE_ATI_fragment_shader more modular.Chia-I Wu2010-05-121-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 Wu2010-05-121-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 Wu2010-05-121-0/+6
| | | | This allows condrender.c to be compiled without FEATURE_queryobj.
* mesa: Make FEATURE_EXT_transform_feedback more modular.Chia-I Wu2010-05-123-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 stringsBrian Paul2010-05-111-5/+5
|
* mesa: added glGet code for GL_ARB_transform_feedback2Brian Paul2010-05-111-0/+18
|
* mesa: remove unused headerBrian Paul2010-05-111-1/+0
|
* mesa: remove unused headerBrian Paul2010-05-111-1/+0
|
* mesa: Optimize get.c by using a table-driven approachKristian Høgsberg2010-05-1110-10157/+2351
|
* mesa: s/uint/GLuint/ in _mesa_BindTransformFeedback prototype.Vinson Lee2010-05-102-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 infrastructureBrian Paul2010-05-107-32/+549
| | | | | Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects.
* mesa: Update comments in get_gen_es.py.Vinson Lee2010-05-091-2/+2
|
* mesa: fix typos, comment in signed 16-bit tex fetch codeBrian Paul2010-05-091-4/+4
|
* mesa: added unsigned 16-bit/channel tex formatBrian Paul2010-05-096-10/+127
|
* mesa: added comments for signed 16-bit formatsBrian Paul2010-05-091-4/+4
|
* mesa: use GL_RGBA16_SNORM for accum bufferBrian Paul2010-05-092-1/+3
|
* mesa: added texstore function for signed 16-bit formatsBrian Paul2010-05-091-4/+74
|
* mesa: added UNCLAMPED_FLOAT_TO_SHORT macroBrian Paul2010-05-091-0/+3
|
* mesa: add missing cases for signed 16-bit formatsBrian Paul2010-05-091-0/+13
|
* mesa: remove driver hooks for GetFloat/Integer/Doublev, etcBrian Paul2010-05-074-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 cygwinJon TURNEY2010-05-071-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 Wu2010-05-071-4/+4
| | | | Move glapi to src/mapi/{glapi,es1api,es2api}.
* es: IgnoresJakob Bornecrantz2010-05-061-0/+4
|
* mesa: fpclassify dummy definition not needed on Mac OS X.Vinson Lee2010-05-051-0/+4
|
* mesa: remove some color index codeBrian Paul2010-05-041-19/+0
|
* mesa: remove unused renderbuffer adaptor codeBrian Paul2010-05-042-605/+0
|
* mesa: remove renderbuffer adaptor callsBrian Paul2010-05-041-24/+0
| | | | Was only used for OSMesa but no longer needed.
* mesa: Fix build of ES overlay.Chia-I Wu2010-05-052-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 neededBrian Paul2010-05-041-0/+10
|
* mesa: remove trailing comma in enum listBrian Paul2010-05-041-1/+1
| | | | Some compilers complain about this.
* mesa: Only initialize TNL for OpenGLKristian Høgsberg2010-05-031-4/+5
|
* mesa: Only initialize save dispatch table for OpenGLKristian Høgsberg2010-05-031-12/+10
|
* mesa: increase MAX_DRAW_BUFFERS to 8Brian Paul2010-05-032-1/+4
| | | | Required for GL 3.x
* mesa: Include api_exec.h in dlist.c.Vinson Lee2010-05-021-0/+1
| | | | Fixes _mesa_alloc_dispatch_table implicit declaration warning.
* mesa: Include mfeatures.h before testing feature macrosKristian Høgsberg2010-05-021-0/+2
|
* 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
| |