Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-21 | demos: check that GL version is 2.0 or higher | Brian Paul | |
2009-04-21 | st: report GL_OUT_OF_MEMORY instead of asserting | Brian Paul | |
2009-04-21 | trivial/tri-viewport: add keys for frustrum/ortho and z coordinate | Keith Whitwell | |
2009-04-21 | trivial/tri-viewport: add more out-of-bounds background quads | Keith Whitwell | |
2009-04-21 | trivial/tri_viewport: add space==reset key | Keith Whitwell | |
2009-04-21 | trivial/tri_viewport: add width/height keys | Keith Whitwell | |
2009-04-20 | softpipe: fix softpipe_is_buffer/texture_referenced() regression | Brian Paul | |
Return the conservative PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE value for now. This fixes a bunch of regressions seen in piglit and glean. | |||
2009-04-20 | swrast: fix pointer arithmetic error in get_texel_array() | Brian Paul | |
This came from commit 1b2ab023673261b4b942e1126c0b599d02fbd4a0 | |||
2009-04-20 | gdi: Don't implement broken gl_dispatch_stub_xxx. | José Fonseca | |
2009-04-20 | wgl: Don't implement broken gl_dispatch_stub_xxx. | José Fonseca | |
These don't respect the stdcall, so they crash upon return. | |||
2009-04-20 | mesa: Correct the gl_dispatch_stub_xxx prototypes. | José Fonseca | |
2009-04-20 | mesa: Handle failure to create a transfer. | José Fonseca | |
2009-04-20 | mesa/progs: fix scons build after recent demo moves | Keith Whitwell | |
2009-04-20 | trivial/tri-viewport.c - add guide lines, more triangles, make interactive | Keith Whitwell | |
This is becoming more like a test than a trivial/ example. | |||
2009-04-20 | st: assert on pipe_buffer_create failure | Keith Whitwell | |
This needs a proper fix to propogate the out-of-memory condition back up to Mesa and the app as a GL error. Until then, at least catch the problem at its source. | |||
2009-04-20 | tests/mipmap_view: add linear/nearest key | Keith Whitwell | |
2009-04-20 | util: don't set unused blend state | Keith Whitwell | |
Try to avoid creating multiple blend atoms. | |||
2009-04-20 | trace: Add initializer for static variables | Jakob Bornecrantz | |
2009-04-20 | r300: fix register-negate branch merge regression | Maciej Cencora | |
2009-04-20 | gallium: Fix glDraw/CopyPixels fragment program leak. | Michel Dänzer | |
2009-04-19 | trace: Enable dumping to be turned on and off | Jakob Bornecrantz | |
2009-04-19 | st: Wait to create bitmap transfer until needed | Jakob Bornecrantz | |
2009-04-19 | autoconf: Build gallium softpipe when driver=xlib | Jakob Bornecrantz | |
2009-04-19 | progs/demos: Update ignore | Jakob Bornecrantz | |
2009-04-19 | progs/glsl: Update ignore | Jakob Bornecrantz | |
2009-04-18 | softpipe: Simplify softpipe_create's prototype. | José Fonseca | |
2009-04-18 | softpipe: Fix softpipe_is_texture_referenced prototype. | José Fonseca | |
2009-04-18 | softpipe: Remove softpipe_winsys. | José Fonseca | |
Not used by softpipe anyway. | |||
2009-04-18 | demos: added glsl/texaaline.c program and overhaul the Makefile | Brian Paul | |
2009-04-18 | demos: updated .gitignore list | Brian Paul | |
2009-04-18 | docs: removed/added demo programs | Brian Paul | |
2009-04-18 | demos: move demos/texobj.c to tests/ | Brian Paul | |
2009-04-18 | demos: move demos/occlude.c (old HP extension) to tests | Brian Paul | |
2009-04-18 | demos: move tests/dinoshade.c to demos/ | Brian Paul | |
2009-04-18 | demos: move tests/projtex.c to demos/ | Brian Paul | |
And fix compiler warnings. | |||
2009-04-18 | demos: move tests/fbotexture.c to demos/ | Brian Paul | |
2009-04-18 | demos: move texdown.c to tests/ | Brian Paul | |
2009-04-18 | demos: move glutfx demo to tests/ | Brian Paul | |
2009-04-18 | demos: move streaming_rect.c demo to tests/ | Brian Paul | |
2009-04-18 | demos: move glslnoise.c demo to glsl/noise2.c | Brian Paul | |
2009-04-18 | i965: use region width, height in brw_update_renderbuffer_surface() | Brian Paul | |
Fixes a regression from commit 2c30fd84dfa052949a117c78d932b58c1f88b446 seen with DRI1. | |||
2009-04-18 | intel: #include polygon.h to silence warning | Brian Paul | |
2009-04-18 | demos: fix incorrect assertion | Brian Paul | |
2009-04-18 | mesa: add switch case for GL_VERTEX_STATE_PROGRAM_NV in _mesa_new_program() | Brian Paul | |
Fixes bug seen in progs/tests/vptest1.c | |||
2009-04-18 | demos: fix usage text | Brian Paul | |
2009-04-18 | intel: Handle ARB_vertex_buffer_object state in intel_clear_tris(). | Michel Dänzer | |
Fixes gearsvbo app by Michael Clark. | |||
2009-04-17 | demos: new glsl/array.c demo | Brian Paul | |
Test variable indexing into a uniform array in a vertex shader. | |||
2009-04-17 | intel: make sure polygon mode is set properly in intel_clear_tris() | Brian Paul | |
Fixes progs/glsl/skinning.c demo. | |||
2009-04-17 | mesa: suppress extra newline | Brian Paul | |
2009-04-17 | i915: fix broken indirect constant buffer reads | Brian Paul | |
The READ message's msg_control value can be 0 or 1 to indicate that the Oword should be read into the lower or upper half of the target register. It seems that the other half of the register gets clobbered though. So we read into two dest registers then use a MOV to combine the upper/lower halves. |