Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wgl: relocate wgl code to state_trackers/wgl | Keith Whitwell | 2009-01-27 | 26 | -4490/+0 |
| | | | | Similar to the GLX state trackers for DRI and xlib. | ||||
* | gallium: updated comments in st_extensions.c | Brian Paul | 2009-01-26 | 1 | -7/+12 |
| | |||||
* | mesa: declare pipe_texture in st_public.h | Pekka Paalanen | 2009-01-24 | 1 | -0/+1 |
| | | | | | | | | | | | | | | Fixes: In file included from nouveau_context_dri.c:6: ../../../../../../src/mesa/state_tracker/st_public.h:87: warning: 'struct pipe_texture' declared inside parameter list ../../../../../../src/mesa/state_tracker/st_public.h:87: warning: its scope is only this definition or declaration, which is probably not what you want ../../../../../../src/mesa/state_tracker/st_public.h:104: warning: 'struct pipe_texture' declared inside parameter list Signed-off-by: Pekka Paalanen <[email protected]> | ||||
* | wgl: Adapt for st_get_framebuffer_surface call change. | José Fonseca | 2009-01-23 | 1 | -1/+1 |
| | |||||
* | gallium: change the st_get_framebuffer_surface/texture functions | Alan Hourihane | 2009-01-23 | 3 | -19/+26 |
| | | | | | to return TRUE/FALSE if the st_framebuffer is valid, and if it is return the surface/texture in the passed pointer. | ||||
* | Merge commit 'origin/master' into gallium-0.2 | Alan Hourihane | 2009-01-22 | 35 | -422/+890 |
|\ | | | | | | | | | | | | | Conflicts: windows/VC8/mesa/osmesa/osmesa.vcproj windows/VC8/progs/demos/gears.vcproj windows/VC8/progs/progs.sln | ||||
| * | i915: Add decode for PS in batchbuffers. | Eric Anholt | 2009-01-21 | 2 | -6/+483 |
| | | |||||
| * | i965: Remove gratuitous whitespace in INTEL_DEBUG=wm output. | Eric Anholt | 2009-01-21 | 4 | -5/+8 |
| | | |||||
| * | i965: Use _mesa_num_inst_src_regs() instead of keeping a copy of its contents. | Eric Anholt | 2009-01-21 | 1 | -48/+6 |
| | | |||||
| * | [intel] Remove remaining references to intel_wait_flips(). | Kristian Høgsberg | 2009-01-21 | 1 | -5/+1 |
| | | | | | | | | Oops. | ||||
| * | swrast: fix redundant texture application in affine_textured_triangle(). | Brian Paul | 2009-01-21 | 1 | -1/+9 |
| | | | | | | | | | | This function does simple texture mapping so disable normal texture mapping before we call _swrast_write_rgba_span() so that we don't do it twice. | ||||
| * | mesa: add some debug assertions to detect null current texture object pointers | Brian Paul | 2009-01-21 | 2 | -0/+22 |
| | | | | | | | | See bug #17895. These assertions could be removed when this is resolved. | ||||
| * | [intel] Go back to using the typedef for the sarea structmesa_7_3_rc3 | Timo Aaltonen | 2009-01-20 | 4 | -8/+8 |
| | | | | | | | | | | | | The upstream linux kernel headers and libdrm kernel headers disagree on the tag name for the sarea struct: _drm_i915_sarea vs drm_i915_sarea. They both typedef it to drm_i915_sarea_t though, so just use that. | ||||
| * | Remove intel pageflipping support in its entirety. | Owain G. Ainsworth | 2009-01-20 | 5 | -328/+20 |
| | | | | | | | | | | | | | | | | It's been broken and deprecated for a while, so it's time to die. This has the wonderful benefit of cleaning up the code a fair amount; making it marginally less twisty. I'm unsure if the for loops in IntelWindowMoved are still needed. | ||||
| * | glsl: silence unused var warnings | Brian Paul | 2009-01-20 | 1 | -0/+2 |
| | | |||||
| * | mesa: silence uninitialized var warnings | Brian Paul | 2009-01-20 | 2 | -0/+6 |
| | | |||||
| * | mesa: silence compiler warning at -O2 | Brian Paul | 2009-01-20 | 1 | -0/+1 |
| | | |||||
| * | mesa: bump version to 7.3-rc3 | Brian Paul | 2009-01-20 | 1 | -1/+1 |
| | | |||||
| * | Add a comment about _tnl_emit_indexed_vertices_to_buffer. | Thomas Hellstrom | 2009-01-20 | 1 | -0/+6 |
| | | |||||
| * | tnl: Add a utility to emit indexed vertices to a DMA buffer. | Thomas Hellstrom | 2009-01-20 | 2 | -1/+50 |
| | | | | | | | | | | | | This utility is useful for hardware that doesn't support HW index buffers. It's a bit inefficient but appears to give a substantial performance gain, as we can emit tri strips that would otherwise be split into triangles. | ||||
| * | Fix store texel for argb4444. | Thomas Hellstrom | 2009-01-20 | 1 | -1/+1 |
| | | |||||
| * | Fix store texel for argb8888_rev. | Thomas Hellstrom | 2009-01-20 | 1 | -1/+1 |
| | | |||||
| * | Add RGBA4444 and RGBA5551 texture formats. | Thomas Hellstrom | 2009-01-20 | 6 | -0/+212 |
| | | |||||
| * | dri1: Add a macro to validate two dri drawables in one go. | Thomas Hellstrom | 2009-01-20 | 1 | -0/+22 |
| | | | | | | | | | | | | | | | | Dri drivers often may validate first a write drawable and then a read drawable ("readable"). However, the hardware lock may be unlocked when validating the readable, causing the write drawable status to be stale. Drivers should use this macro instead when validating two drawables. | ||||
| * | mesa: fix build of stand-alone glslcompiler driver | Brian Paul | 2009-01-19 | 1 | -1/+1 |
| | | |||||
| * | i965: fix polygon culling bug when rendering to a texture/FBO | Brian Paul | 2009-01-16 | 1 | -12/+13 |
| | | | | | | | | | | | | Since we use an inverted viewport transformation for render to texture, that inverts front/back polygon orientation. Now glCullFace(GL_FRONT / GL_BACK) works correctly. | ||||
| * | intel: added intel_rendering_to_texture() helper function. | Brian Paul | 2009-01-16 | 1 | -0/+17 |
| | | | | | | | | | | When we're rendering to textures we have to invert the viewport transformation. This helper cleans up that test and can be used elsewhere... | ||||
| * | mesa: remove GL_DEPTH_TEST + no depth buffer test | Brian Paul | 2009-01-16 | 1 | -4/+0 |
| | | | | | | | | | | One could enable depth testing before binding an FBO that has a depth buffer so this test is no longer useful or correct. | ||||
* | | statetracker: copy back color buffer to front buffer when needed | Brian Paul | 2009-01-19 | 1 | -1/+13 |
| | | | | | | | | | | Fixes front-buffer rendering when following a SwapBuffers. See progs/tests/rubberband.c | ||||
* | | Merge commit 'origin/master' into gallium-0.2 | Alan Hourihane | 2009-01-16 | 13 | -17/+80 |
|\| | | | | | | | | | Conflicts: src/mesa/shader/slang/slang_compile.c | ||||
| * | glsl: fix broken sampler assignments | Brian Paul | 2009-01-16 | 1 | -1/+2 |
| | | |||||
| * | i915: fallback on transfer mode | Xiang, Haihao | 2009-01-16 | 1 | -0/+6 |
| | | |||||
| * | windows: updated mesa.def file | Karl Schultz | 2009-01-15 | 1 | -0/+5 |
| | | |||||
| * | glsl: use _mesa_sprintf() | Brian Paul | 2009-01-15 | 1 | -2/+2 |
| | | |||||
| * | glsl: move declaration before code | Brian Paul | 2009-01-15 | 1 | -1/+1 |
| | | |||||
| * | mesa: check frambuffer complete status before rendering | Alan Hourihane | 2009-01-15 | 1 | -13/+20 |
| | | |||||
| * | mesa: bump version to 7.3-rc2mesa_7_3_rc2 | Brian Paul | 2009-01-14 | 1 | -1/+1 |
| | | |||||
| * | glsl: fix comment | Brian Paul | 2009-01-14 | 1 | -1/+1 |
| | | |||||
| * | glsl: minor clean-up for rect sampler test | Brian Paul | 2009-01-14 | 1 | -5/+18 |
| | | |||||
| * | r300: work-around FRAG_BIT_FOGC warning/error | Brian Paul | 2009-01-14 | 2 | -0/+12 |
| | | | | | | | | | | | | | | See bug 17929. Fog doesn't actually work, but the often complained about warning is silenced. | ||||
| * | i965: asst. fixes, work-arounds for FBOs and render to texture | Brian Paul | 2009-01-14 | 3 | -2/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | OpenGL allows mixing and matching depth and stencil renderbuffers in framebuffer objects while the hardware really only supports interleaved depth/stencil buffers. This makes for some tricky buffer management. An extra wrinkle is the situation where the user allocates a 16bpp depth texture or renderbuffer then tries to render to it along with a stencil buffer. We'd have to promote the 16bpp Z values to 24-bit Z values and mix in the stencil values to setup the depth/stencil renderbuffer. There's no support for that now, so always allocate 32bpp depth textures/ renderbuffers for now. | ||||
| * | i965: fix incorrect renderbuffer DataType assignment | Brian Paul | 2009-01-14 | 1 | -2/+6 |
| | | |||||
| * | i965: fix some FBO depth/stencil assertions | Brian Paul | 2009-01-14 | 1 | -2/+5 |
| | | |||||
* | | stw: Dispatch to our stw_winsys::flush_front_buffer | José Fonseca | 2009-01-16 | 2 | -0/+27 |
| | | | | | | | | | | pipe_winsys::flush_front_buffer should die someday, but this is good enough for now. | ||||
* | | mesa: tweak to formatting | Alan Hourihane | 2009-01-15 | 1 | -2/+2 |
| | | |||||
* | | mesa: small cleanup | Alan Hourihane | 2009-01-15 | 1 | -6/+5 |
| | | |||||
* | | mesa: revert partial commit for 0x0 render targets | Alan Hourihane | 2009-01-15 | 1 | -5/+4 |
| | | |||||
* | | mesa: check frambuffer complete status before rendering | Alan Hourihane | 2009-01-15 | 1 | -13/+20 |
| | | |||||
* | | mesa: Fix merge conflicts | Jakob Bornecrantz | 2009-01-15 | 1 | -15/+0 |
| | | |||||
* | | Merge commit 'origin/master' into gallium-0.2 | Alan Hourihane | 2009-01-14 | 45 | -165/+1248 |
|\| | | | | | | | | | | | | | | | | | | | | | Conflicts: docs/install.html docs/relnotes-7.3.html src/mesa/shader/slang/slang_codegen.c src/mesa/shader/slang/slang_compile.c src/mesa/shader/slang/slang_emit.c src/mesa/shader/slang/slang_preprocess.c src/mesa/shader/slang/slang_preprocess.h |