Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-02 | r300g: inline update_derived_shader_state | Marek Olšák | |
2010-05-02 | r300g: fix segfault when resizing a DRI2 framebuffer | Marek Olšák | |
Resetting tiling flags might happen after a texture is destroyed... Looking at the kernel sources, we don't actually need to reset the tiling flags. | |||
2010-05-02 | r300g: cache tiling flags to reduce the number of DRM calls | Marek Olšák | |
2010-05-02 | mesa: s/sprintf/_mesa_snprintf/ | Vinson Lee | |
2010-05-02 | i965g: s/sprintf/util_snprintf/ | Vinson Lee | |
2010-05-01 | glsl: s/sprintf/_mesa_snprintf/ | Vinson Lee | |
2010-05-01 | glapi: s/strcpy/strncpy/ | Vinson Lee | |
2010-05-01 | llvmpipe: Remove unused variable. | Vinson Lee | |
2010-05-01 | progs/tests: Remove meaningless const qualifiers. | Vinson Lee | |
2010-05-01 | swrastg: Use trace | Jakob Bornecrantz | |
2010-05-01 | progs/demos: Remove meaningless const qualifier in vao_demo.c. | Vinson Lee | |
2010-04-30 | nv50: raise constant buffers size to maximum | Christoph Bumiller | |
Removed the param heaps, haven't been using them for a long time now. | |||
2010-04-30 | nv50: relax restriction on surface_copy format equality a bit | Christoph Bumiller | |
2010-04-30 | nv50: don't segfault on OPCODE_END for empty programs | Christoph Bumiller | |
2010-04-30 | llvmpipe: fix out-of-bounds texture sampling | Brian Paul | |
If we're using a wrap mode in which border color sampling is possible it means that texcoords may be outside of the texture image bounds. Fetching the texel may result in a segfault. Use the 'use_border' variable to catch such texcoords and replace the texel offset with zero (which will be in bounds). Fixes segfault in Lightsmark demo, fd.o bug 27877. | |||
2010-04-30 | llvmpipe: added lp_build_sample_nop() for debugging | Brian Paul | |
2010-04-21 | svga: Fix index offset | Jakob Bornecrantz | |
2010-04-30 | st/mesa: ignore gl_texture_object::BaseLevel when allocating gallium textures | Brian Paul | |
Previously, when we created a gallium texture for a corresponding Mesa texture we'd only allocate space for mipmap levels >= BaseLevel. This patch undoes that mechanism. This fixes a render-to-texture bug when rendering to level 0 when BaseLevel=1. Also, it makes sense to allocate the whole texture object memory when BaseLevel > 0 since a common use of GL_TEXTURE_BASE_LEVEL is to progressively load/render mipmaps. Eventually, the app almost always fills in the level=0 mipmap image. Finally, the texture image code is bit easier to understand now. | |||
2010-04-30 | draw: Fix memory leaks in llvm code. | José Fonseca | |
2010-04-30 | x86-64: Make assembly routines .hidden like on x86 | Adam Jackson | |
2010-04-20 | svga: Init surface functions | Jakob Bornecrantz | |
2010-04-30 | util: Add missing break statement in u_caps.c | Jakob Bornecrantz | |
Thanks Vinson. | |||
2010-04-29 | st/mesa: remove unused/disabled code | Brian Paul | |
2010-04-29 | mesa: added _mesa_print_framebuffer() for debugging | Brian Paul | |
2010-04-29 | i965: Reject shaders with uninlined function calls instead of hanging. | Eric Anholt | |
Most of the failure from using uninlined function calls ends up being just bad rendering, but nested function calls in the VS currently hang the GPU, so reject them and explain why. | |||
2010-04-29 | mesa: Don't overwrite a driver's shader infolog with generic failure message. | Eric Anholt | |
2010-04-29 | util: Update caps after helpfull input | Jakob Bornecrantz | |
In no particular order: * Make list const * Add function comments * Clearly state that demo lists are not complete * Fix whitespace * Use __FUNCTION__ instead of __func__ * Add unimplemented check which always fail Thanks Brian and Keith. | |||
2010-04-29 | util: Add small caps checker helper | Jakob Bornecrantz | |
2010-04-29 | util: Format error format string as the rest of the pipe formats | Jakob Bornecrantz | |
2010-04-29 | softpipe & llvmpipe: Enable SM3 cap | Jakob Bornecrantz | |
2010-04-29 | draw llvm: stay in bounds even if fetch_count % 4 != 0 | Zack Rusin | |
if fetch_count % 4 != 0 then on the last iteration we fetch garbage. this patch makes sure we stay within bounds | |||
2010-04-29 | cso: remove commented-out code, update function docs | Brian Paul | |
2010-04-29 | gallivm: add some assertions in special-case sampler code | Brian Paul | |
2010-04-29 | i965: Fix cube map layouts on Ironlake. | Eric Anholt | |
We were doubling up the offsets for the mipmap levels for CPU access. Instead of reimplementing i945_miptree_layout_2d with 6 cube images separated by qpitch, share that function and provide the level offsets later. Fixes piglit cubemap and fbo-cubemap. | |||
2010-04-29 | i965: Implement VS MAX in a more obvious way. | Eric Anholt | |
This should be functionally equivalent, with the possible exception of NaN handling. | |||
2010-04-29 | i965: Use immediate float operands for some VS instructions. | Eric Anholt | |
We could use this to reduce constant register pressure, but for now it makes the resulting program assembly much more readable. | |||
2010-04-29 | llvmpipe: fix texture/display target memory leak | Brian Paul | |
2010-04-29 | gallium/draw: Fix PPC compiler warning. | Michel Dänzer | |
2010-04-29 | gallium/draw: Fix PPC build failure. | Michel Dänzer | |
2010-04-29 | r300g: fix compiler error | Marek Olšák | |
Ouch. | |||
2010-04-29 | r300g: use the enum for color swizzles in the rasterizer | Marek Olšák | |
2010-04-29 | r300g: rasterizer debug logging | Marek Olšák | |
2010-04-29 | r300g: fix tests/yuvrect and possibly even rendering to YUV textures | Marek Olšák | |
2010-04-29 | r300g: enable the RGBA16F renderbuffer too | Marek Olšák | |
2010-04-29 | r300g: enable float textures | Marek Olšák | |
We still need to wait for state tracker support. | |||
2010-04-29 | r300g: compose swizzles from texture formats and sampler views | Marek Olšák | |
2010-04-29 | r300g: init s3tc fetching functions | Marek Olšák | |
2010-04-19 | svga: More don't recurse | Jakob Bornecrantz | |
2010-04-19 | svga: Translate svga reloc flags to pb flags | Jakob Bornecrantz | |
2010-04-19 | svga: Don't recurse | Jakob Bornecrantz | |