Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_rasterpos.h. | Vinson Lee | |
2010-08-04 | glsl2: Constant fold the children of many more ir_instruction types. | Eric Anholt | |
2010-08-04 | glsl2: Return a real progress value from constant folding. | Eric Anholt | |
2010-08-04 | glsl2: Refactor constant folding of rvalues to a function. | Eric Anholt | |
2010-08-04 | st/mesa: Add missing header in st_cb_program.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. | |||
2010-08-04 | glcpp: Refresh autogenerated lexer and parser. | Kenneth Graunke | |
2010-08-04 | glcpp: Remove xtalloc wrappers in favor of plain talloc. | Kenneth Graunke | |
Calling exit() on a memory failure probably made sense for the standalone preprocessor, but doesn't seem too appealing as part of the GL library. Also, we don't use it in the main compiler. | |||
2010-08-04 | glsl2: Remove uses of deprecated TALLOC_CTX type. | Kenneth Graunke | |
2010-08-04 | r300/compiler: Remove unnecessary header. | Vinson Lee | |
2010-08-04 | intel: Remove unnecessary header. | Vinson Lee | |
2010-08-04 | st/mesa: Add missing headers in st_cb_flush.h. | Vinson Lee | |
Add forward declarations. Include p_compiler.h for uint symbol. | |||
2010-08-04 | st/mesa: Clean up header inclusion in st_cb_feedback.h. | Vinson Lee | |
Replace mtypes.h with forward declaration. Include compiler.h for INLINE symbol. | |||
2010-08-04 | glsl2: add gl_LightModel built-in uniform. | Aras Pranckevicius | |
2010-08-04 | glsl2: Don't try to assign locations for samplers during linking. | Eric Anholt | |
Mesa will do the mapping at _mesa_add_sampler() time. Fixes assertion failures in debug builds, which might have caught real problems with multiple samplers linked in a row. | |||
2010-08-04 | ir_to_mesa: Clean up the mapping of samplers to Mesa's sampler uniforms. | Eric Anholt | |
Instead of using a linker-assigned location (since samplers don't actually take up uniform space, being a link-time choice), use the sampler's varaible pointer as a hash key. | |||
2010-08-04 | mesa: Don't null deref looking for Mesa IR code at compile time. | Eric Anholt | |
The new compiler doesn't generate Mesa IR at compile time, and that compile time code previously wouldn't have reflected the link time code that actually got used. But do dump the info log of the compile regardless. | |||
2010-08-04 | r600g: force flush on map as temporary fix to readpixel | Jerome Glisse | |
Should allow more piglit test to pass. Need to plugin proper flushing. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-04 | st/mesa: Add missing headers to st_cb_fbo.h. | Vinson Lee | |
2010-08-04 | r600g: always perform texture perspective divide + fix blending | Jerome Glisse | |
quake3 engine seems to run fine at this point (ioquake) Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_eglimage.h. | Vinson Lee | |
Replace dd.h and mtypes.h with a forward declaration. Include compiler.h for INLINE symbol. | |||
2010-08-04 | glsl2: Skip talloc_parent in constant_expression of non-constant arrays. | Eric Anholt | |
2010-08-04 | draw: Fix return type of draw_translate_vinfo_size. | Vinson Lee | |
Fixes typo from commit b609cfc7c9c38f26e7e6d6f7dd5dd6d38f4ed209. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_drawtex.h. | Vinson Lee | |
Replace mtypes.h with forward declarations. Include compiler.h for INLINE symbol. | |||
2010-08-04 | glsl2: Make the clone() method take a talloc context. | Eric Anholt | |
In most cases, we needed to be reparenting the cloned IR to a different context (for example, to the linked shader instead of the unlinked shader), or optimization before the reparent would cause memory usage of the original object to grow and grow. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_drawpixels.h. | Vinson Lee | |
Replace mtypes.h with forward declarations. Include compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Add forward declaration in st_cb_condrender.h. | Vinson Lee | |
2010-08-04 | st/mesa: Add forward declarations in st_cb_clear.h. | Vinson Lee | |
2010-08-04 | st/mesa: Include missing headers in st_cb_bufferobjects.h. | Vinson Lee | |
Include compiler.h for INLINE symbol. Include mtypes.h for gl_buffer_object symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_blit.h. | Vinson Lee | |
Replaced mtypes.h and st_context.h with forward declarations. Added compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_bitmap.h. | Vinson Lee | |
Removed mtypes.h. Include compiler.h for INLINE symbol. Added forward declarations. | |||
2010-08-04 | glx: Move deref after NULL check | Kristian Høgsberg | |
2010-08-04 | glsl2: Set ir_discard::ir_type when cloning it | Aras Pranckevicius | |
Fixes unset ir_type after inlining. | |||
2010-08-04 | glx: Fix use after free in drisw error path | Kristian Høgsberg | |
2010-08-04 | glx: We no longer need screen extensions for drisw | Kristian Høgsberg | |
https://bugs.freedesktop.org/show_bug.cgi?id=29177 | |||
2010-08-04 | glx: dri2InvalidateBuffers() needs the X drawable XID not the GLX one | Kristian Høgsberg | |
This never ceases to entertain. | |||
2010-08-04 | r600: relax stride/alignment requirements for vertices | Andre Maasikas | |
seems hw can do unaligned accesses and unaligned strides removes extra conversion when using vbo's however I needed to switch 3 component byte format to 4 component formats for tests to pass. Somewhat sililar to GL_SHORT fix done earlier removes assert and gains +2 piglit especially draw-vertices | |||
2010-08-04 | draw: Fix the edge flags of flatshade_first polygons. | Chia-I Wu | |
This bug can be triggered by rendering polygons with glProvokingVertexEXT(GL_FIRST_VERTEX_CONVENTION_EXT); glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); | |||
2010-08-03 | r300/compiler: Always unroll loops when doing loop emulation. | Tom Stellard | |
2010-08-03 | r300/compiler: r500 hw support for break and continue in loops. | Tom Stellard | |
The BGNLOOP and ENDLOOP instructions are now being used correctly, which makes break and continue possible. The deadcode pass has been modified to handle breaks, and the compiler is more careful about which loops are unrolled. | |||
2010-08-03 | r300/compiler: KILP may not always be inside an IF statement. | Tom Stellard | |
2010-08-03 | r300/compiler: Don't unroll loops with continue or break. | Tom Stellard | |
2010-08-03 | st/mesa: Clean up header file inclusion in st_cache.h. | Vinson Lee | |
2010-08-03 | st/mesa: Add forward declarations in st_atom_shader.h. | Vinson Lee | |
2010-08-04 | r300g: disable multisample visuals until the state tracker bits catch up. | Dave Airlie | |
This stops us advertising lots of ms visuals we can't actually use. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-08-03 | draw: check for instance divisors in vcache_check_run() | Brian Paul | |
When we have instance divisors we don't really know which vertex elements we'll be fetching ahead of time. This fixes a bug in instanced drawing which was exposed by the new draw_vbo() code because of max_index not being ~0 as often as it used to be. The test for max_index >= DRAW_PIPE_MAX_VERTICES often hid this problem before. | |||
2010-08-03 | gallium/translate: make generic_run() and generic_run_elts() more alike | Brian Paul | |
Plus more debug code and do clamping in generic_run(). | |||
2010-08-03 | draw: added a comment | Brian Paul | |
2010-08-03 | draw: use instance divisor in draw_print_arrays() | Brian Paul | |
2010-08-03 | draw: add assertion, rearrange debug code | Brian Paul | |
2010-08-04 | st/dri: fix crash when dri2_drawable_get_buffers fails | Marek Olšák | |
It's easily reproducible with Compiz with its Resize window mode set to Normal (which is usually not the default mode). https://bugs.freedesktop.org/show_bug.cgi?id=28658 https://bugs.freedesktop.org/show_bug.cgi?id=29303 This is actually a workaround to prevent Compiz crashes. Instead, a completely white titlebar might show up during resizing transparent windows (a rare case). The underlying cause should be fixed by someone who has more knowledge about the code. (dri2_drawable_get_buffers should not return NULL) Acked-By: Jakob Bornecrantz <jakob@vmware.com> |