Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-31 | util: Generalize lp_format_is_rgba8 into util_format_is_rgba8_variant. | José Fonseca | |
2010-03-31 | python/tests: Rename test name. | José Fonseca | |
We only test blitting from a surface -- we don't test any sampler state. | |||
2010-03-31 | python/tests: Test all existing gallium formats. | José Fonseca | |
2010-03-31 | python/tests: Speed up the tests by reusing the same pipe context. | José Fonseca | |
2010-03-31 | python/tests: Get the tests running again. | José Fonseca | |
2010-03-31 | st/python: Generate binding for u_format utility functions too. | José Fonseca | |
2010-03-30 | i965g: Fix assertion that was always true. | Vinson Lee | |
surface_format field is a 9-bit field and the value of BRW_SURFACEFORMAT_INVALID exceeds 9 bits. | |||
2010-03-30 | st/dri: Remove unnecessary header. | Vinson Lee | |
2010-03-30 | identity: Remove unnecessary header. | Vinson Lee | |
2010-03-30 | st/dri: Remove unnecessary header. | Vinson Lee | |
2010-03-30 | mesa: added glGet queries for transform_feedback | Brian Paul | |
2010-03-30 | mesa: added glEnable/Disable state for transform feedback | Brian Paul | |
2010-03-30 | mesa: add new query/buffer targets for transform feedback | Brian Paul | |
2010-03-30 | mesa: plug in transform feedback functions, set limits | Brian Paul | |
2010-03-30 | mesa: add transformfeedback.c to build | Brian Paul | |
2010-03-30 | mesa: initial check-in of transform feedback functions | Brian Paul | |
2010-03-30 | mesa: add transform feedback queries | Brian Paul | |
And make _mesa_copy_string() non-static. | |||
2010-03-30 | mesa: add EXT_transform_feedback to extension list | Brian Paul | |
2010-03-30 | mesa: initial data structures for transform feedback | Brian Paul | |
2010-03-30 | mesa: simplify query code with get_query_binding_point() | Brian Paul | |
2010-03-30 | intel: Bump intel driver date to later than the date on the 7.8 branch | Ian Romanick | |
2010-03-30 | dri: Drop another unused __DRIscreen field | Kristian Høgsberg | |
2010-03-30 | dri: Drop the unused dummyContext | Kristian Høgsberg | |
2010-03-30 | dri: Drop an unused __DRIcontext field | Kristian Høgsberg | |
2010-03-30 | intel: Remove redundant fields from struct intel_context | Kristian Høgsberg | |
All these pointers are in the __DRIcontext struct, which we point to. | |||
2010-03-30 | intel: Use fb->Height when flipping read buffer orientation | Kristian Høgsberg | |
With DRI2, x and y are always zero and fb->Height is always up to date with the drawable height. | |||
2010-03-30 | r300/compiler: Unbreak DDX/DDY. | Corbin Simpson | |
Fixes progs/glsl/deriv. | |||
2010-03-30 | gallivm: cleanup the code (found by coverity) | Zack Rusin | |
the condition can't be false, declerations are ok even if we don't emit any. | |||
2010-03-30 | drisw: fix use after free (bug 27370) | George Sapountzis | |
2010-03-30 | Merge branch '7.8' | Michel Dänzer | |
Conflicts: Makefile src/mesa/main/version.h Resolved by keeping version strings from master (also in the intel driver). | |||
2010-03-30 | glx/dri2: Fix debug build with old dri2proto. | Michel Dänzer | |
Apparently the higher compiler optimization level in non-debug builds was eliminating the unused functions referencing the unresolved DRI2 symbols... | |||
2010-03-30 | st/dri: Fix a memory leak in dri1_init_screen. | Chia-I Wu | |
Free the returned configs upon errors. | |||
2010-03-30 | mesa/es: Use core mesa's mfeatures.h. | Chia-I Wu | |
Remove mfeatures_es1.h and mfeatures_es2.h. Build the overlay with either FEATURE_ES1 or FEATURE_ES2 defined. | |||
2010-03-30 | mesa: Add missing features. | Chia-I Wu | |
Add features tested in the code but missing from mfeatures.h. This also fixes some tests of features. They should be tested with "#if", not "#ifdef". | |||
2010-03-30 | mesa: Add umbrella features. | Chia-I Wu | |
Add FEATURE_GL, FEATURE_ES1, and FEATURE_ES2 for OpenGL, OpenGL ES 1.x, and OpenGL ES 2.x respectively. Define individual features through the new umbrella features. There is no real change introduced by this commit. | |||
2010-03-29 | drisw: Remove unnecessary header. | Vinson Lee | |
2010-03-29 | swrastg: Silence unused value warning. | Vinson Lee | |
2010-03-29 | r300g: Remove unused variable. | Vinson Lee | |
2010-03-29 | r300g: Remove unnecessary header. | Vinson Lee | |
2010-03-29 | r300g: Bind constantbuf to Draw immediately, don't wait for render. | Corbin Simpson | |
Doesn't hurt, and reduces code duplication. | |||
2010-03-30 | st/glx: Remove a wrong assertion in choose_pixel_format. | Chia-I Wu | |
There are X visuals that Gallium or the code does not support. We could not assert the color format to be supported. Return PIPE_FORMAT_NONE in such cases and let the caller handle it. | |||
2010-03-29 | gallivm: use constant size array, added assertion check | Brian Paul | |
2010-03-29 | Add test case for lp_bld_printf() | Chris Li | |
2010-03-29 | gallivm: added lp_bld_printf() function | Chris Li | |
2010-03-29 | progs/glsl: Add workarounds for Apple GLSL compiler crash. | Vinson Lee | |
fsraytrace and vsraytrace were crashing on Mac OS X 10.6.3 in the Apple GLSL compiler function TPPStreamCompiler::assignOperands. Removing some const qualifers made the crashes go away. | |||
2010-03-29 | progs/glsl: Remove inline keyword. | Vinson Lee | |
Fixes MSVC build. | |||
2010-03-29 | progs/gallium/python: Get tri.py sample working again. | José Fonseca | |
2010-03-29 | st/python: Update for util_draw_vertex_buffer changes. | José Fonseca | |
2010-03-29 | st/python: Move surface read/write methods to context. | José Fonseca | |
2010-03-29 | gallivm: make sure that the alloca's are the very first thing in the function | Zack Rusin | |
otherwise mem2reg can't put them in registers |