Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-13 | st/xorg: try to fix non-uniform transforms | Zack Rusin | |
2009-11-13 | glsl/apps: Report syntax parser errors. | Michal Krol | |
2009-11-13 | slang: Report syntax parser errors. | Michal Krol | |
2009-11-13 | glsl/cl: Add simple error reporting. | Michal Krol | |
2009-11-13 | slang: Regenerate .gc files. | Michal Krol | |
2009-11-13 | slang: Get rid of the old syntax file and utilities. | Michal Krol | |
2009-11-13 | slang: Plug in the new syntax parser. | Michal Krol | |
2009-11-13 | gdi: Link to glslcl. | Michal Krol | |
2009-11-13 | glsl/apps: Add GLSL compiler that translates source text into binary stream. | Michal Krol | |
Should be used in place of gc_to_bin utility to precompile builtin library. | |||
2009-11-13 | glsl/cl: Add a hard-coded syntax parser. | Michal Krol | |
2009-11-12 | progs/glsl: Add missing break statement in multinoise.c. | Vinson Lee | |
2009-11-12 | intel: Don't check for context pointer to be NULL during extension init | Ian Romanick | |
Thanks to Chia-I Wu's changes to the extension function infrastructure, we no longer have to tell the loader which extensions the driver might enable. This means that intelInitExtensions will never be called with a NULL context pointer. Remove all the NULL checks. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net> | |||
2009-11-12 | intel: Remove unused enable_imaging parameter to intelInitExtensions | Ian Romanick | |
2009-11-12 | i965: Fix Ironlake shadow comparisons. | Eric Anholt | |
The cube map array index arg is always present. | |||
2009-11-12 | i965: Fix VBO last-valid-offset setup on Ironlake. | Eric Anholt | |
Instead of doing math based on the (broken for VBO && offset != 0) input->count number, just use the BO size. Fixes assertion failure in ETQW. | |||
2009-11-11 | i965g: consult fs inputs when laying out vs output regs | Keith Whitwell | |
Vertex shader now emits just the FS inputs, in the positions and order expected by the fragment shader. This means potentially regenerating the vertex shader to match different fragment shader's input layouts. | |||
2009-11-11 | i965g: skip over vertex position output when preallocating FS inputs | Keith Whitwell | |
2009-11-11 | i965g: some more cases where file_max[] is used without obligatory +1 | Keith Whitwell | |
2009-11-11 | i965g: smaller upload buffer for index data | Keith Whitwell | |
2009-11-11 | i965g: fix off-by-one on curbe upload | Keith Whitwell | |
2009-11-11 | i965g: avoid use of internally generated immediates | Keith Whitwell | |
Currently not working, so don't generate more of them. | |||
2009-11-11 | trivial: make tri-orig more closely match the original version of tri... | Keith Whitwell | |
2009-11-11 | st/xorg: use an immediate instead of a full blown const | Zack Rusin | |
2009-11-11 | st/xorg: don't use flow control | Zack Rusin | |
2009-11-11 | swrast: handle additional Z24 formats in read_depth_pixels() | Brian Paul | |
2009-11-11 | i965: fix EXT_provoking_vertex support | Roland Scheidegger | |
This didn't work for quad/quadstrips at all, and for all other primitive types it only worked when they were unclipped. Fix up the former in gs stage (could probably do without these changes and instead set QuadsFollowProvokingVertexConvention to false), and the rest in clip stage. | |||
2009-11-11 | demos/glsl: Add missing break statement to noise test. | Vinson Lee | |
2009-11-11 | st/xorg: implement repeatnone and make some code smell less like ass | Zack Rusin | |
2009-11-11 | st/xorg: fallback until daddy can implement you properly | Zack Rusin | |
2009-11-11 | progs/tests: add alpha/blend testing to packedpixels.c | Brian Paul | |
2009-11-11 | r300, r300g: Add missing registers. | Corbin Simpson | |
2009-11-11 | dri-st: Add some required GL 2.0 extensions. | Corbin Simpson | |
Two-sided stencil and NPOT textures. | |||
2009-11-10 | i965: Fix VS constant buffer value loading. | Eric Anholt | |
Previously, we'd load linearly from ParameterValues[0] for the constants, though ParameterValues[1] may not equal ParameterValues[0] + 4. Additionally, the STATE_VAL type paramters didn't get updated. Fixes piglit vp-constant-array-huge.vpfp and ET:QW object locations. Bug #23226. | |||
2009-11-10 | i965: Unalias src/dst registers for SGE and friends. | Eric Anholt | |
Fixes piglit vp-sge-alias test, and the googleearth ground shader. \o/ Bug #22228 (cherry picked from commit 56ab92bad8f1d05bc22b8a8471d5aeb663f220de) | |||
2009-11-10 | i965: Allow use of PROGRAM_LOCAL constants in ARB_vp. | Eric Anholt | |
Fixes piglit arl.vp. (cherry picked from commit d52d78b4bcd6d4c0578f972c0b8ebac09e632196) | |||
2009-11-10 | glsl/pp: Add sl_pp_purify_getc(). | Michal Krol | |
2009-11-10 | Update config linux-opengl-es. | Chia-I Wu | |
Build demos that require EGL_MESA_screen_surface, and build egl_i915.so that supports EGL_MESA_screen_surface. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | progs/es1: Port eglgears to OpenGL ES 1.1. | Chia-I Wu | |
This demo requires EGL_MESA_screen_surface to run. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | progs/es1: Port egltri to OpenGL ES 1.1. | Chia-I Wu | |
This demo requires EGL_MESA_screen_surface to run. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | st/egl: Allow APIs other than OpenGL. | Chia-I Wu | |
This is done by stopping linking to libmesagallium.a and removing DRI related stuff. The state tracker an application links to decides the API supported. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | egl_softpipe: Clean up Makefile. | Chia-I Wu | |
Fix generation of depend. Link to the dynamic libraries used. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | progs/es: Add .gitignore. | Chia-I Wu | |
Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | mesa/es: Add .gitignore. | Chia-I Wu | |
Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-11-10 | st/xorg: Fallback if picture format doesn't match texture format | Jakob Bornecrantz | |
2009-11-10 | st/xorg: Don't segfault when debug printing | Jakob Bornecrantz | |
2009-11-10 | st/xorg: wrap to border color | Zack Rusin | |
2009-11-10 | swrast: update renderbuffer format assertions | brian | |
2009-11-10 | mesa: fix some begin/end render-to-texture logic | brian | |
Before, we weren't aggressive enough in checking for the start or end of render-to-texture. In particular, if only the ctx->ReadBuffer had texture attachments, we were treating that as a render-to-texture case. This fixes a regression from commit 75bdbdd90b15c8704d87ca195a364ff6a42edbb1 "intel: Don't validate in a texture image used as a render target." | |||
2009-11-10 | mesa: move check_begin/end_texture_render() calls | brian | |
2009-11-10 | mesa: new vars: oldDrawFb, oldReadFb in _mesa_BindFramebufferEXT() | brian | |