Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-17 | i965: Make rasterization of single and multiple quad prims match. | Eric Anholt | |
This is trying to follow the spirit of the invariance rules, though they're not specific on this point. Fixes quad-invariance piglit test while retaining the 22s -> 18s win on glean blendFunc. This was a regression in c67d9d84f501f145f841c0b981caff6f4dfd936f. | |||
2010-05-16 | i965: Remove the half-baked code for multiple OQs at the same time. | Eric Anholt | |
GL doesn't actually let you begin an OQ while one is active, so the extra work was pointless. | |||
2010-05-16 | i965: Remove unused occlusion query struct field. | Eric Anholt | |
2010-05-16 | r300/compiler: fix peephole optimizer | Tom Stellard | |
Tested-by: Marek Olšák <maraeo@gmail.com> | |||
2010-05-16 | r300/compiler: Implement simple peephole optimizer | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2010-05-15 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-05-15 | r300/compiler: silence a warning | Marek Olšák | |
2010-05-14 | i965: Set the correct provoking vertex for clipped first-mode trifans. | Eric Anholt | |
Bug #24470: glean clipFlat test. | |||
2010-05-14 | mesa: more info in glUniform error messages | Brian Paul | |
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 | i965: Add program dumping for INTEL_DEBUG=gs. | Eric Anholt | |
2010-05-14 | i965: Parse the ff_sync URB send opcode on Ironlake disasm. | Eric Anholt | |
2010-05-14 | i965: Use R16G16B16A16_FLOAT for 3-component half-float. | Eric Anholt | |
The RGBX version isn't supported as a vertex input type, but since we force the last channel's value anyway, this should be fine. The only potential risk I see is in the limiter on VBO reads past the end of the buffer forcing the whole vertex to 0 when the A channel lands past the end. Fixes piglit draw-vertices-half-float. | |||
2010-05-14 | i965: Dump out the correct shared function for SEND on Ironlake. | Eric Anholt | |
2010-05-14 | i965: Support INTEL_DEBUG=clip to dump the clip program. | Eric Anholt | |
2010-05-14 | intel: Handle arbitrary compressed formats in intel_compressed_num_bytes. | Eric Anholt | |
Note that we don't support arbitrary block size for compressed quite yet -- block height of 4 is hard-coded all over the place. Bug #27098 (srgb dxt1 producing a bytes per pixel of 0). | |||
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 | i965: Reduce a single GL_QUADS to GL_TRIANGLE_FAN. | Eric Anholt | |
This is similar to the GL_QUAD_STRIP -> TRIANGLE_STRIP optimization -- the GS usage to split the quads into tris is a huge bottleneck, so a quick check improves glean blendFunc time massively (width * height of the window of single-pixel GL_QUADS, many many times). This may also end up helping with cairo performance, which sometimes ends up drawing a single quad. | |||
2010-05-13 | intel: Don't update window system renderbuffers on TexImage. | Eric Anholt | |
While sometimes rendering occurs in the form of blits for TexImage, it doesn't interact with the window system renderbuffers, so skip it. | |||
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-13 | st/mesa: Remove unnecessary header. | Vinson Lee | |
2010-05-12 | mesa/st: Expose pipe driver's shader limits. | José Fonseca | |
2010-05-12 | st/mesa: Do not use draw module in OpenGL ES build. | Chia-I Wu | |
This removes references to symbols in draw module for OpenGL ES build. As OpenGL ES does not support feedback/selection mode, draw module is used in pathes that will never be reached. However, if the symbols are referenced, it will bloat the final shared libraries unnecessarily. This is serious when LLVM is enabled. | |||
2010-05-12 | mesa/es: Merge back to core mesa. | Chia-I Wu | |
With the omit list gone, there are not too many differences in building core mesa and ES overlay. Remove the mesa/es and build both of them in src/mesa/Makefile. | |||
2010-05-12 | mesa/es: Remove omit list. | Chia-I Wu | |
vbo/vbo_save* are the last members on the omit list. Test FEATURE_dlist in the sources and remove the omit list. | |||
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: Remove sources.mak. | Chia-I Wu | |
All ES overlay sources have been merged into core Mesa. Not much is left in sources.mak so merge it into Makefile. | |||
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 | st/mesa: Make st_cb_drawtex.h FEATURE_OES_draw_texture aware. | Chia-I Wu | |
This change allows st_cb_drawtex.h to be used without knowing if FEATURE_OES_draw_texture is enabled. | |||
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 | st/mesa: Make st_cb_blit.h FEATURE_EXT_framebuffer_blit aware. | Chia-I Wu | |
This change allows st_cb_blit.h to be used without knowing if FEATURE_EXT_framebuffer_blit is enabled. | |||
2010-05-12 | st/mesa: Make st_cb_queryobj.h FEATURE_queryobj aware. | Chia-I Wu | |
This change allows st_cb_queryobj.h to be used without knowing if FEATURE_queryobj is enabled. | |||
2010-05-12 | st/mesa: Make FEATURE_feedback and FEATURE_rastpos more modular. | Chia-I Wu | |
Make st_cb_feedback.h FEATURE_feedback aware and st_cb_rastpos.h FEATURE_rastpos aware. Move creation of selection/feedback draw context to st_init_draw. | |||
2010-05-12 | st/mesa: Make st_cb_{bitmap,drawpixels}.h FEATURE_drawpix aware. | Chia-I Wu | |
This change allows st_cb_{bitmap,drawpixels}.h to be used without knowing if FEATURE_drawpix is enabled. | |||
2010-05-12 | st/mesa: Make st_cb_accum.h FEATURE_accum aware. | Chia-I Wu | |
This change allows st_cb_accum.h to be used without knowing if FEATURE_accum is enabled. | |||
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 | st/mesa: update query code for transform feedback | Brian Paul | |
2010-05-11 | mesa/st+tgsi: Provide a free callback to match with ureg_get_tokens(). | José Fonseca | |
This fixes crashes with the memory debugging routines on Windows. NOTE: This is a candidate for the 7.8 stable branch | |||
2010-05-11 | mesa: Optimize get.c by using a table-driven approach | Kristian Høgsberg | |
2010-05-11 | st/mesa: Remove unnecessary header. | Vinson Lee | |
2010-05-11 | intel: Don't update renderbuffers in intelSetTexBuffer2 if we have invalidate | Kristian Høgsberg | |