summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove state_tracker/MakefileMatt Turner2013-01-101-2/+0
| | | | Unneeded and unnecessary.
* build: Don't build pipebufferMatt Turner2013-01-102-19/+0
| | | | It's already built by src/gallium/auxiliary.
* radeon/llvm: Convert to AutomakeTom Stellard2013-01-106-36/+52
| | | | | | | | v2: Johannes Obermayr <[email protected]> Fix some undefined symbols. v3: Johannes Obermayr <[email protected]> Build it -shared to fix egl_gallium.so on r600/radeonsi builds.
* build: Add automake conditionals for gallium driversMatt Turner2013-01-101-0/+16
|
* state_trackers/dri/sw: Convert to automakeMatt Turner2013-01-104-25/+45
|
* state_trackers/dri/drm: Convert to automakeMatt Turner2013-01-104-27/+45
|
* state_trackers/dri: Convert to automakeMatt Turner2013-01-104-12/+25
|
* winsys/sw/xlib: Convert to automakeMatt Turner2013-01-104-17/+37
|
* winsys/sw/wrapper: Convert to automakeMatt Turner2013-01-104-12/+36
|
* winsys/sw/wayland: Convert to automakeMatt Turner2013-01-104-13/+37
|
* winsys/sw/null: Convert to automakeMatt Turner2013-01-104-16/+36
|
* winsys/sw/fbdev: Convert to automakeMatt Turner2013-01-104-13/+36
|
* winsys/sw/dri: Convert to automakeMatt Turner2013-01-104-13/+36
|
* winsys/sw: Convert to automakeMatt Turner2013-01-104-26/+39
|
* svga/winsys/drm: Convert to automakeMatt Turner2013-01-104-19/+43
|
* nouveau/winsys/drm: Convert to automakeMatt Turner2013-01-104-11/+39
|
* radeonsi: Convert to automakeMatt Turner2013-01-104-21/+43
| | | | Can't use LTLIBRARIES here yet, since libradeon isn't converted.
* nvc0: Convert to automakeMatt Turner2013-01-104-12/+38
|
* nv50: Convert to automakeMatt Turner2013-01-104-12/+38
|
* nv30: Convert to automakeMatt Turner2013-01-104-12/+38
|
* nouveau: Convert to automakeMatt Turner2013-01-104-16/+40
|
* svga: Convert to automakeMatt Turner2013-01-104-19/+41
|
* softpipe: Convert to automakeMatt Turner2013-01-104-37/+66
|
* llvmpipe: Convert to automakeMatt Turner2013-01-104-70/+111
|
* rbug: Convert to automakeMatt Turner2013-01-104-12/+45
|
* i915/winsys/sw: Convert to automakeMatt Turner2013-01-104-12/+43
|
* i915/winsys/drm: Convert to automakeMatt Turner2013-01-104-13/+40
|
* i915g: Convert to automakeMatt Turner2013-01-104-9/+38
|
* r600g: Use gallium automake include fileMatt Turner2013-01-101-4/+2
|
* libgallium: Convert to automakeTom Stellard2013-01-104-48/+60
|
* trace: Convert to automakeTom Stellard2013-01-104-13/+20
|
* radeon/winsys: Convert to automakeTom Stellard2013-01-104-15/+17
|
* r300g: Link ralloc.c and register_allocate.c into separate libraryMatt Turner2013-01-105-6/+18
|
* r300g: Build a libtool archiveTom Stellard2013-01-101-7/+11
|
* r300g: Use gallium automake include fileTom Stellard2013-01-101-5/+3
| | | | [mattst88] v2: Remove ARCH_FLAGS/OPT_FLAGS
* gallium: Add common automake include fileTom Stellard2013-01-101-0/+6
| | | | | | | | v2: Matt Turner <[email protected]> Remove ARCH_FLAGS/OPT_FLAGS v3: Johannes Obermayr <[email protected]> Add -I$(top_srcdir)/include to GALLIUM_CFLAGS
* automake: Convert Gallium target and winsysMatt Turner2013-01-107-24/+6
|
* egl/gbm: Implement EGL_EXT_buffer_ageKristian Høgsberg2013-01-102-0/+24
| | | | | Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
* mesa: Rename and wire-up GetInteger64i_vMatt Turner2013-01-104-6/+5
| | | | | | | | | | | | The function was named badly and wasn't in the dispatch table, making it hard to find. Fixes transform_feedback2_states and gets a few other transform feedback tests closer to working in es3conform. Reviewed-by Anuj Phogat <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
* mesa: Correct glGet{Boolean,Integer}i_v namesMatt Turner2013-01-101-2/+2
| | | | | | Reviewed-by Anuj Phogat <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow GL_DEPTH_STENCIL_ATTACHMENT in ES 3Matt Turner2013-01-101-1/+1
| | | | | | | Fixes framebuffer_srgb_default_encoding_fbo and 5 packed_depth_stencil tests from es3conform. Reviewed-by: Kenneth Graunke <[email protected]>
* mesa: Support more glGet enums for ES3Chad Versace2013-01-102-3/+11
| | | | | | | | | | | | | | | | | | For glGetIntegerv, add support for the following in an OpenGL ES 3.0 context: GL_MAJOR_VERSION GL_MINOR_VERSION GL_NUM_EXTENSIONS See Table 6.29 of the OpenGL ES 3.0 spec. Fixes error GL_INVALID_ENUM in piglit egl-create-context-verify-gl-flavor, testcase for OpenGL ES 3.0. Reviewed-by: Kenneth Graunke <[email protected]> (v1) Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Signed-off-by: Chad Versace <[email protected]>
* mesa: Support querying GL_MAX_ELEMENT_INDEX in ES 3Matt Turner2013-01-104-0/+23
| | | | | | | | | The ES 3 spec says that the minumum allowable value is 2^24-1, but the GL 4.3 and ARB_ES3_compatibility specs require 2^32-1, so return 2^32-1. Fixes es3conform's element_index_uint_constants test. Reviewed-by: Ian Romanick <[email protected]>
* mesa: De-duplicate ES2 queriesMatt Turner2013-01-102-11/+11
| | | | | | | | From GL/GLES/GL_CORE and GLES2 -> GL/GL_CORE/GLES2. Yes, we really were exposing ES2_compatibility queries on ES 1. Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow glGet* queries on EXT_texture_lod_bias data in ES 3Matt Turner2013-01-101-3/+7
| | | | | | Fixes the remaining 4 texture_lod_bias failures in es3conform. Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow glGet* queries on EXT_framebuffer_blit data in ES 3Matt Turner2013-01-101-4/+4
| | | | | | Fixes 2 framebuffer_blit es3conform tests. Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow glGet* queries on ARB_fragment/vertex_shader data in ES 3Matt Turner2013-01-101-4/+6
| | | | | | | Fixes uniform_buffer_object_implementation_dependent_limits in es3conform. Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow glGet* queries on ARB_framebuffer_object data in ES 3Matt Turner2013-01-101-3/+3
| | | | Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow glGet* queries on ARB_transform_feedback2 data in ES 3Matt Turner2013-01-102-6/+11
| | | | | | | | | Fixes the transform_feedback2_init_defaults test from es3conform. The ES 3 spec lists these as TRANSFORM_FEEDBACK_PAUSED and TRANSFORM_FEEDBACK_ACTIVE. Reviewed-by: Ian Romanick <[email protected]>
* mesa: Allow glGet* queries on EXT_transform_feedback data in ES 3Matt Turner2013-01-101-7/+7
| | | | Reviewed-by: Ian Romanick <[email protected]>