Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-22 | mesa: stub for _mesa_RenderbufferStorageMultisample() | Brian Paul | |
2009-01-22 | mesa: call fbo_incomplete() if driver marks FBO as incomplete (debug only) | Brian Paul | |
2009-01-22 | mesa: update update_framebuffer_size() for ARB_fbo and mixed renderbuffer sizes | Brian Paul | |
2009-01-22 | mesa: added ctx->Driver.ValidateFramebuffer() callback | Brian Paul | |
Called from the _mesa_test_framebuffer_completeness() function to give the driver the chance to make a framebuffer as incomplete if it doesn't meet some specific hardware restriction. | |||
2009-01-22 | mesa: add new ARB_fbo queries, fix some error tests | Brian Paul | |
2009-01-22 | mesa: add new ColorEncoding and ComponentType to gl_renderbuffer | Brian Paul | |
2009-01-22 | mesa: additional FBO/RB id error checking for ARB_fbo | Brian Paul | |
It's illegal to bind a FBO/RB id that didn't come from glGenRender/Framebuffer(). | |||
2009-01-22 | mesa: for ARB_fbo, lift restriction that all FBO attachments are same size ↵ | Brian Paul | |
and color format | |||
2009-01-22 | mesa: initial extension bits for GL_ARB_framebuffer_object | Brian Paul | |
2009-01-22 | mesa: regenerated GL API files | Brian Paul | |
2009-01-22 | glapi: include ARB_framebuffer_object.xml | Brian Paul | |
2009-01-22 | glapi: XML spec for GL_ARB_framebuffer_object | Brian Paul | |
2009-01-22 | glsl: call _mesa_write_shader_to_file(). Debug-only, disabled | Brian Paul | |
2009-01-22 | glsl: new _mesa_write_shader_to_file() function | Brian Paul | |
Used to log a shader to a file. Includes shader source code, the info log and generated GPU instructions. | |||
2009-01-22 | glsl: set shader->CompileStatus in _slang_compile() | Brian Paul | |
2009-01-22 | mesa: added _mesa_fprintf() wrapper | Brian Paul | |
2009-01-22 | docs: placeholder 7.5 release notes | Brian Paul | |
2009-01-22 | mesa: master is open for new development, eventually will be Mesa 7.5 | Brian Paul | |
2009-01-22 | docs: skeleton 7.4 release notes file | Brian Paul | |
2009-01-22 | docs: 7.3 md5 sums | Brian Paul | |
2009-01-22 | mesa: set version to 7.3 | Brian Paul | |
2009-01-22 | docs: set 7.3 release date | Brian Paul | |
2009-01-22 | docs: assorted updates, link fixes | Brian Paul | |
2009-01-21 | i915: Add decode for PS in batchbuffers. | Eric Anholt | |
2009-01-21 | i965: Remove gratuitous whitespace in INTEL_DEBUG=wm output. | Eric Anholt | |
2009-01-21 | i965: Use _mesa_num_inst_src_regs() instead of keeping a copy of its contents. | Eric Anholt | |
2009-01-21 | [intel] Remove remaining references to intel_wait_flips(). | Kristian Høgsberg | |
Oops. | |||
2009-01-21 | windows: fix output dir for glut project file | Thomas Henn | |
2009-01-21 | swrast: fix redundant texture application in affine_textured_triangle(). | Brian Paul | |
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. | |||
2009-01-21 | mesa: add some debug assertions to detect null current texture object pointers | Brian Paul | |
See bug #17895. These assertions could be removed when this is resolved. | |||
2009-01-21 | windows: another round of VC8 project file updates | Karl Schultz | |
New static configs generate DLLs that do not have a dependency on the MSCVR* DLL's. | |||
2009-01-21 | Revert "windows: new VC8 projects statically linked against libcmt" | Brian Paul | |
This reverts commit bbda892c551e7d3f2d94cc877cc6e80f8568fa99. Static configs rolled into regular project files (in next commit). Provided by Karl Schultz. | |||
2009-01-20 | docs: document glXMakeContextCurrent() and Windows fixes | Brian Paul | |
2009-01-20 | Fix issues with glXMakeContextCurrent and glXMakeCurrentReadSGI | Ian Romanick | |
There were several bugs in the infrastructure for these two routines. 1. GLX_ALIAS was incorrectly used. The function and its alias must be identical! glXMakeContextCurrent / glXMakeCurrentReadSGI and MakeContextCurrent had different parameters. This caused the last parameter of MakeContextCurrent to get random values. 2. We based the implementation of glXMakeContextCurrent on the manual page instead of the GLX spec. The GLX spec says that glXMakeContextCurrent can be passed a Window as a drawable. When this happens, it will behave just like glXMakeCurrentReadSGI or glXMakeCurrent. 3. If there was a problem finding or creating the DRI drawable, MakeContextCurrent would crash instead of returning an error. This commit fixes all three issues, and fixes bug #18367 and bug #19625. | |||
2009-01-20 | [intel] Go back to using the typedef for the sarea struct | Timo Aaltonen | |
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. | |||
2009-01-20 | Remove intel pageflipping support in its entirety. | Owain G. Ainsworth | |
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. | |||
2009-01-20 | glsl: silence unused var warnings | Brian Paul | |
2009-01-20 | mesa: silence uninitialized var warnings | Brian Paul | |
2009-01-20 | mesa: silence compiler warning at -O2 | Brian Paul | |
2009-01-20 | mesa: bump version to 7.3-rc3 | Brian Paul | |
2009-01-20 | mesa: inlclude whole windows/VC8/ directory in tarballs | Brian Paul | |
2009-01-20 | windows: new VC8 projects statically linked against libcmt | Thomas Henn | |
2009-01-20 | windows: more VC8 project file updates | Karl Schultz | |
Make some compiler flags per-file. Remove driverfuncs.c from osmesa project. | |||
2009-01-20 | Add a comment about _tnl_emit_indexed_vertices_to_buffer. | Thomas Hellstrom | |
2009-01-20 | tnl: Add a utility to emit indexed vertices to a DMA buffer. | Thomas Hellstrom | |
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. | |||
2009-01-20 | Fix store texel for argb4444. | Thomas Hellstrom | |
2009-01-20 | Fix store texel for argb8888_rev. | Thomas Hellstrom | |
2009-01-20 | Add RGBA4444 and RGBA5551 texture formats. | Thomas Hellstrom | |
2009-01-20 | dri1: Add a macro to validate two dri drawables in one go. | Thomas Hellstrom | |
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. | |||
2009-01-19 | mesa: fix build of stand-alone glslcompiler driver | Brian Paul | |