Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-16 | r300: Major vertex program code clean up and rework. | Oliver McFadden | |
2007-07-16 | r300: Replaced the ugly VERTEX_SHADER_INSTRUCTION typedef. | Oliver McFadden | |
2007-07-15 | change back driver change from previous commit | Roland Scheidegger | |
2007-07-15 | fix bogus fb/drawable information (fixes xdemos/wincopy) | Roland Scheidegger | |
the framebuffer objects attached to drawables can have invalidate state associated with them, since for the window framebuffer this is per-context state and not per-fbo state. Since drivers may rely on that information (otherwise would need to check if currently the window-framebuffer is bound in a lot of places) fix it up in _mesa_make_current (ugly). | |||
2007-07-15 | fix the texture copypixels path | Roland Scheidegger | |
2007-07-15 | begin getting rid of fake clip rects (copy_pixel) | Roland Scheidegger | |
2007-07-15 | r300: Gracefully exit after GART memory is exhausted. | Oliver McFadden | |
2007-07-14 | r300: Disable vertex program point size; it's almost certainly wrong. | Oliver McFadden | |
See the conversation between myself and Tommy Schultz Lassen on mesa3d-dev. | |||
2007-07-14 | r300: Clean up the vertex program output assignment. | Oliver McFadden | |
2007-07-14 | nouveau: nv10 and nv11,15 are different | Patrice Mandin | |
2007-07-14 | fix assertion, z/stencil swarst readback, (still looks suspicious) ↵ | Roland Scheidegger | |
copyTexSubimage | |||
2007-07-13 | fix shader/info string length queries (bug 11588) | Jan Dvorak | |
2007-07-13 | Fix setup.light_twoside determination. | Brian | |
When a vertex program is used, use value of GL_VERTEX_PROGRAM_TWO_SIDE. Otherwise, if FF lighting, use value of GL_LIGHT_MODEL_TWO_SIDE. | |||
2007-07-13 | press 'f' to toggle front-face winding | Brian | |
2007-07-13 | Fix more polygon winding, culling confusion. | Brian | |
If the determinant of the triangle is positive, its winding is CCW (right-handed coord system). | |||
2007-07-13 | bugfixes (wrt fb updates), cleanups | Roland Scheidegger | |
move drawable validation back to where it was now that the driDrawable information isn't used directly anymore. Fix bogus fb updates (the context we get for SwapBuffer processing may not have the drawable being processed attached!) glthreads behaves a bit better but still not correct. | |||
2007-07-13 | Fix for-loop in interp() so we don't go out of bounds. | Brian | |
Improved comments for that loop. Added some sanity check assertions regarding vertex layout. | |||
2007-07-13 | set INTERP_CONSTANT when appropriate | Brian | |
Not really signficant now since draw_flat stage copies the provoking vertex color to all prim verts. | |||
2007-07-13 | comments | Brian | |
2007-07-13 | Enable Keith's branch-less stipple code - it works. | Brian | |
2007-07-13 | Add 'prim' field to quad so that stipple and aa coverage stages can do the ↵ | Brian | |
right thing. | |||
2007-07-13 | Implement AA points and AA coverage application in quad pipeline. | Brian | |
2007-07-13 | press 's' to toggle smoothing | Brian | |
2007-07-13 | Added basic occlusion counting | Brian | |
2007-07-13 | minor rename | Brian | |
2007-07-13 | Play "nuke the typedef" | Ben Skeggs | |
2007-07-13 | Add conditional-free implementation (disabled, not tested) | Keith Whitwell | |
2007-07-13 | Simplify slightly. | Keith Whitwell | |
Don't bother trying to save a small memcpy. | |||
2007-07-13 | Revert "r300: Corrected off-by-one error in r300_vertprog.c." | Oliver McFadden | |
This reverts commit 07ac2386f5c0ab9c2432d4b5e3490b1e13d033fc. | |||
2007-07-13 | r300: Corrected off-by-one error in r300_vertprog.c. | Oliver McFadden | |
2007-07-13 | r300: Moved some hardware initialization into appropriate functions. | Oliver McFadden | |
2007-07-13 | r300: Use a switch statement in r300UpdateCulling. | Oliver McFadden | |
2007-07-13 | r300: Setup the back facing color bits correctly. | Oliver McFadden | |
Apparently for back facing color to work you must set all 3 color bits; I guess the hardware cannot handle them separately. | |||
2007-07-12 | fix width/depth mix-up (bug 11577) | Brian | |
2007-07-12 | minor changes, comments about multiple color buffers, MRT. | Brian | |
2007-07-12 | fix swizzle-related bug 11534 | Brian | |
2007-07-12 | Add a quad 'bufloop' stage to handle glDrawBuffer(GL_FRONT_AND_BACK). | Brian | |
This removes the notion of multiple color buffers from all other stages. Will need a bit more work when shaders with multiple render targets arrive. | |||
2007-07-12 | don't use driDrawable information directly, don't resize at makecurrent | Roland Scheidegger | |
driDrawable information now isn't used in most parts of the driver. makecurrent only updates fb information when the context is new (driDrawable is still updated by the dri common code). | |||
2007-07-12 | XXX comment about skipping stipple for points/lines | Brian | |
2007-07-12 | s/prim_setup/sp_draw_render_stage/, new comments | Brian | |
2007-07-12 | Remove dead code | Brian | |
2007-07-12 | Rename prim_stage -> draw_stage | Brian | |
2007-07-12 | Added colormask, dither, multisample state. Implement colormasking stage. | Brian | |
2007-07-12 | front/back-face determination was wrong | Brian | |
2007-07-12 | culling was inverted | Brian | |
2007-07-12 | handle edge flags for GL_POLYGONs | Brian | |
2007-07-12 | fix MIN/MAX mix-up | Brian | |
2007-07-12 | nv20 also don't support viewport_origin, like nv10 | Patrice Mandin | |
2007-07-12 | nouveau: match drm 0.0.9 interface | Ben Skeggs | |
2007-07-11 | clean-up of stencil code | Brian | |