Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-21 | gallium: Temporary workaround for mismatched pipe create and pipe destroy | Jonathan White | |
2008-07-19 | gallium: Finer grained is_format_supported. | José Fonseca | |
2008-07-15 | st: Silence compiler warnings on Windows. | Michal Krol | |
2008-07-13 | util: Eliminate pipe from the arguments to pipe_get/put_tile_xxx functions. | José Fonseca | |
You don't need a pipe_context * for this, and all other necessary info is already inside pipe_surface. | |||
2008-07-10 | gallium: check for FEATURE_feedback and FEATURE_drawpix when creating/using ↵ | Brian Paul | |
the aux draw module | |||
2008-07-07 | gallium: move assertion (though not really significant) | Brian Paul | |
2008-07-07 | gallium: simplify/fix buffer_offset, src_offset computation for VBO arrays | Brian Paul | |
Things broke when vertex position wasn't the first attribute. | |||
2008-07-04 | gallium: fix st_choose_format(internalFormat=GL_RGBA16) | Brian Paul | |
Need to check if we're choosing a surface or texture format. | |||
2008-07-04 | gallium: replace assertion with conditional | Brian Paul | |
2008-07-03 | gallium: move, increase ST_MAX_SHADER_TOKENS | Brian Paul | |
2008-07-03 | gallium: fix surface memleak in bitmap code | Brian Paul | |
Found w/ tunnel2.c demo. | |||
2008-07-02 | gallium: replace an assertion with "if (!texobj) continue" | Brian Paul | |
It's possible to call update_samplers() between the time a fragment shader is bound and when a texture image is defined (such as glClear). This fixes the case where we don't have a complete texture object yet. | |||
2008-07-02 | gallium: fix a bug in vertex program output mapping | Brian Paul | |
Need to translate VERT_RESULT_PSIZ, BFC0, BFC1 to TGSI shader output slots after all other attributes have been handled. This fixes a bug where generic vertex program outputs (varying vars) could get mapped to the same slot at point size or back-face colors. | |||
2008-07-02 | mesa: fix issues around multisample enable | Roland Scheidegger | |
multisample enable is enabled by default, however gl mandates multisample rendering rules only apply if there's also a multisampled buffer. | |||
2008-06-27 | gallium: handle msaa | Roland Scheidegger | |
2008-06-27 | mesa: Replace void * arithmetic. | José Fonseca | |
2008-06-27 | gallium: Drop pipe_texture->cpp and pipe_surface->cpp. | José Fonseca | |
The chars-per-pixel concept falls apart with compressed and yuv images, where more than one pixel are coded in a single data block. | |||
2008-06-25 | mesa: point size arrays | Brian Paul | |
2008-06-24 | mesa: More signed/unsigned float/integer fixes. | José Fonseca | |
2008-06-24 | mesa: Use appropriate unsigned/signed, float/integer types. | José Fonseca | |
2008-06-24 | mesa: Replace abort by asserts. | José Fonseca | |
2008-06-23 | gallium: added support for fixed-point formats, drawing | Brian Paul | |
2008-06-23 | gallium: fix-up inverted do_copy_texsubimage() | Brian Paul | |
The logic/arithmetic for inverting the src image is a bit simpler now. | |||
2008-06-23 | gallium: remove dead/prototype code | Brian Paul | |
2008-06-23 | gallium: Add accessor functions to get textures from a st_framebuffer | Jakob Bornecrantz | |
2008-06-20 | gallium: always need st_init-blit() | Brian Paul | |
2008-06-20 | gallium: remove unneeded #include | Brian Paul | |
2008-06-20 | gallium: assorted FEATURE tests | Brian Paul | |
2008-06-20 | gallium: remove unneeded #include | Brian Paul | |
2008-06-19 | gallium: new st_api.c file with token symbol for identifying the API | Brian Paul | |
2008-06-19 | gallium: remove unused vars | Brian Paul | |
2008-06-18 | gallium: added new st_set_framebuffer_surface() | Brian Paul | |
This allows the winsys to explicitly specify gallium surfaces for a framebuffer object. | |||
2008-06-18 | gallium: more FEATURE_x tests | Brian Paul | |
2008-06-18 | gallium: added st_get_proc_address() | Brian Paul | |
2008-06-18 | gallium: added FEATURE_x tests | Brian Paul | |
2008-06-17 | gallium: need to flush bitmap cache when raster color changes | Brian Paul | |
2008-06-17 | gallium: check if sampler->max_lod < sampler->min_lod | Brian Paul | |
2008-06-13 | mesa: Remove duplicate code. | Michal Krol | |
2008-06-12 | gallium: add some #if FEATURE_x tests | Brian Paul | |
2008-06-12 | gallium: test for FEATURE_convolution | Brian Paul | |
2008-06-12 | gallium: remove unused/old st_atom_fixedfunction.c file | Brian Paul | |
2008-06-12 | glsl: implement variable array indexes | Zack Rusin | |
2008-06-09 | gallium: include scissor.h | Brian Paul | |
2008-06-08 | mesa: Add MESA_FORMAT_S8_Z24 texture format | Jakob Bornecrantz | |
None of the fetch and store functions implemented. This atleast stops shadowtex from locking the GPU on i915 with the linux-dri-x86 target. It most of it looks okay, with the exception of actually displaying the texture. | |||
2008-05-31 | mesa: Fix build after TGSI declaration interface changes. | Michal Krol | |
2008-05-31 | mesa: Apply MSVC portability fixes from Alan Hourihane. | José Fonseca | |
2008-05-29 | draw: make sure constant buffer data is aligned before passing to aos.c | Keith Whitwell | |
2008-05-29 | draw: draw_range_elements trial | Keith Whitwell | |
2008-05-27 | gallium: Always unreference bitmap cache texture before resetting the cache. | Michel Dänzer | |
Fixes assertion failure with tunnel2 demo. | |||
2008-05-26 | gallium: free renderbuffer's old texture in st_renderbuffer_alloc_storage() | Brian Paul | |