Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-30 | xdemos: Fix xdemos which default to using display :0.0 to default to $DISPLAY | Jon TURNEY | |
Fix xdemos which default to using display :0.0 to default to $DISPLAY, this is kind of irritating when testing on a display other than :0.0 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> | |||
2009-06-30 | mesa/vbo: fix compile and replay of nodes ending in a FALLBACK | Keith Whitwell | |
Where vbo save nodes are terminated with a call to DO_FALLBACK(), as in the case of a recursive CallList which is itself within a Begin/End pair, there two problems: 1) The display list node's primitive information was incorrect, stating the cut-off prim had zero vertices 2) On replay, we would get confused by a primitive that started in a node, but was terminated by individual opcodes. This change fixes the first problem by correctly terminating the last primitive on fallback, and the second by forcing the display list to use the Loopback path, converting all nodes into immediate-mode rendering. The loopback fix is a performance hit, but avoiding this would require a fairly large rework of this code. | |||
2009-06-30 | progs/trivial: add test case for lighting plus per-vertex materials | Keith Whitwell | |
Exercise material-within-begin/end case. | |||
2009-06-30 | progs/isosurf: add materials mode for glVertex + TRISTRIP | Keith Whitwell | |
2009-06-30 | progs/util: make sure function pointers are initialized | Keith Whitwell | |
Call Init() from CompileShaderFile, was previously only called for the Text version of this function. | |||
2009-06-29 | progs/glsl: link with GLEW library | Brian Paul | |
2009-06-29 | progs/glsl: compile with scons and glew | Keith Whitwell | |
Get most of these working with scons. | |||
2009-06-26 | demos: improve argv parsing in fslight.c | Brian Paul | |
2009-06-23 | demos: fix issues in glxcontexts.c | Brian Paul | |
The reshape() function was called when there was no GLX context so the viewport/modelview/projection setup wasn't doing anything. Move the call to reshape() into draw(). Also, remove -stereo, -fullscreen options and do some general clean-up. | |||
2009-06-17 | progs/wgl: Fix shreadtex_mt too. | José Fonseca | |
2009-06-17 | progs/wgl: Tweak the initialization wait in wglthreads. | José Fonseca | |
There was still a non-zero probability for wglShareLists of failing. | |||
2009-06-17 | progs/wgl: Get wglShareLists working in wglthreads. | José Fonseca | |
wglShareLists is a little picky -- it seems to check if it has exclusive access to a lock, and fails if it doesn't. This allows the texture to be shared with all windows. | |||
2009-06-17 | progs/wgl: Allow resizing wglthreads' windows. | José Fonseca | |
2009-06-16 | progs/wgl: Quit after displaying usage for -h option. | José Fonseca | |
2009-06-16 | progs/wgl: Use appropriate types to silence msvc warnings. | José Fonseca | |
2009-06-16 | progs/wgl: Fix assertion failure in wglthreads' texture creation. | José Fonseca | |
2009-06-15 | progs/tests: Use opaque colors. | José Fonseca | |
Transparency is not relevant for this example, and leads to distraction due to different results in alpha visuals, when capturing images to disk. | |||
2009-06-12 | demos: update fbotexture.c to use EXT or ARB functions exclusively | Brian Paul | |
When the -arb option is specified we use GL_ARB_framebuffer_object intead of GL_EXT_framebuffer_object. For some vendors' OpenGL it's important to call the ARB entrypoints instead of the EXT entrypoints to get correct behaviour. Use some function pointer tricks to do this (instead of GLEW). | |||
2009-06-12 | util: additional function pointers | Brian Paul | |
2009-06-11 | progs: Port fp programs to GLEW. | José Fonseca | |
2009-06-08 | progs/tests: Add some scissor tests | Jakob Bornecrantz | |
2009-06-01 | progs/vpglsl: add similar support for point rendering as progs/vp | Keith Whitwell | |
2009-06-01 | trivial/tri-z: add controls for depthrange min/max | Keith Whitwell | |
Also add key to set up quake-1 style ztrick rendering with clear depth 1.0, deptrange(1.0, 0.0) and depthfunc GL_GREATER. | |||
2009-06-01 | progs/wgl: Small cleanup to wglinfo. | José Fonseca | |
2009-06-01 | progs/wgl: Use an invisible window in wglinfo. | José Fonseca | |
2009-06-01 | demos: add missing dependencies for util files | Brian Paul | |
2009-05-22 | demos: fix multitex.c VertCoord attribute mapping | Brian Paul | |
If the multitex.vert shader uses the VertCoord generic vertex attribute instead of the pre-defined gl_Vertex attribute, we need to make sure that VertCoord gets bound to generic vertex attribute zero. That's because we need to call glVertexAttrib2fv(0, xy) after all the other vertex attributes have been set since setting generic attribute 0 triggers vertex submission. Before, we wound up issuing the vertex attributes in the order 0, 1, 2 which caused the first vertex to be submitted before all the attributes were set. Now, the attributes are set in 1, 2, 0 order. | |||
2009-05-11 | trivial: destroy window upon exit | Brian Paul | |
2009-05-08 | progs/trivial: add test for vertex program invarient transform | Keith Whitwell | |
2009-05-08 | progs/trivial: add vbo-noninterleaved test | Keith Whitwell | |
2009-05-08 | trivial: add line-flat.c | Keith Whitwell | |
2009-04-30 | demos: silence warning | Brian Paul | |
2009-04-29 | progs/tests: Update ignores | Jakob Bornecrantz | |
2009-04-29 | progs/tests: Add mipmap_comp for mipmap testing with compressed textures | Jakob Bornecrantz | |
2009-04-28 | progs: add fflushes for cygwin | Keith Whitwell | |
2009-04-28 | demos: asst. updates, clean-ups | Brian Paul | |
2009-04-27 | demos: Clean up allocated Textures and Display Lists when demo quit | Shuang He | |
2009-04-24 | demos: ensure display lists are destroyed for next generation | Alan Hourihane | |
2009-04-24 | shadowtex: fflush stdout for cygwin | Keith Whitwell | |
2009-04-24 | demos/readpix: add option to draw triangle instead of drawpix | Keith Whitwell | |
2009-04-24 | tests/mipmap_view: add a bunch of keystrokes for testing render-to-texture | Keith Whitwell | |
Move between mipmaps, render a triangle, reload textures with either the original arch (and GenMipmaps) or via straightforward glTexImage. | |||
2009-04-21 | demos: check that GL version is 2.0 or higher | 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 | 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 | tests/mipmap_view: add linear/nearest key | Keith Whitwell | |
2009-04-19 | progs/demos: Update ignore | Jakob Bornecrantz | |