Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-26 | st/xorg: create basic vertex shader | Zack Rusin | |
2009-08-26 | st/xorg: create basic fragment shader | Zack Rusin | |
2009-08-26 | st/dri: Add some debug code | Jakob Bornecrantz | |
2009-08-26 | st/xorg: Temporary fix for none stencil visuals | Jakob Bornecrantz | |
Should be replaced with something looking at the proper glx visual for the buffers. | |||
2009-08-26 | st/xorg: Find out correct type for depth stencil buffers | Jakob Bornecrantz | |
2009-08-26 | st/dri: Redo config generation | Jakob Bornecrantz | |
2009-08-26 | st/xorg: Add support for dirty framebuffer region reporting. | Michel Dänzer | |
Add a BlockHandler which flushes the context and reports the dirty region gathered using the X server damage layer. In the interim, with dirty region reporting only allocate textures for the framebuffer and shared pixmaps (e.g. DRI2 buffers) and fall back to software for other pixmaps. This will be improved in the future. | |||
2009-08-26 | st/dri: make the GL_ARB_map_buffer_range entrypoints available | Ben Skeggs | |
2009-08-25 | xorg: insert shaders into the cache | Zack Rusin | |
2009-08-25 | exa: add basic code to cache vertex and fragment shaders | Zack Rusin | |
2009-08-25 | exa: check whether the op is accelerated | Zack Rusin | |
2009-08-25 | xorg: revert bad merge | Zack Rusin | |
2009-08-25 | Add support for building the Xorg state tracker with scons. | Michel Dänzer | |
scons ... statetrackers=xorg | |||
2009-08-24 | xorg: fix compilation | Zack Rusin | |
2009-08-24 | xorg: start on code accelerating render | Zack Rusin | |
2009-08-24 | Merge branch 'master' of ssh://zack@git.freedesktop.org/git/mesa/mesa | Zack Rusin | |
2009-08-24 | openvg: fix vgTransformPath with relative coords | Zack Rusin | |
2009-08-24 | xlib: fix single buffer window resize bug | Brian Paul | |
When a single-buffered window was resized the new window size was never detected. This fix that, but there's still a bug which causes window contents corruption for certain window sizes... | |||
2009-08-24 | tgsi: Fix build error due to commit acc7da90 | Cooper Yuan | |
2009-08-24 | tgsi: Only free temp uregs. | José Fonseca | |
Shorthand. (cherry picked from commit de911220bbbe74cff0c79b260456ff36122b7b5b) | |||
2009-08-24 | tgsi: Pass pipe_context as a parameter to ureg_create_shader. | José Fonseca | |
Simplifies migration to tgsi_ureg. (cherry picked from commit f574398c07c41cb8d31249a7186fc178ef7d552a) | |||
2009-08-24 | tgsi: add generic instruction builder | Keith Whitwell | |
When translating an incoming shader (rather than building one from scratch) it's preferable to be able to call a single, generic instruction emitter rather than figuring out which of the opcode-specific functions to call. | |||
2009-08-24 | r300g: Set the vector address in the input memory for ↵ | Cooper Yuan | |
bypass_vs_clip_and_viewport case | |||
2009-08-22 | st/dri: Remove some debug prints | Jakob Bornecrantz | |
2009-08-22 | st/dri: Find out if the drawable is a pixmap | Jakob Bornecrantz | |
Part of this code is disabled since no performance gains where detected with it enabled. This code only detects if it is a pixmap that it is rendering to on the st/xorg DDX since it sets the fake front to the same handle as front. | |||
2009-08-22 | st/dri: Fix frontbuffer rendering with DRI2 | Jakob Bornecrantz | |
2009-08-22 | st/xorg: Handle fake fronts correctly for pixmaps | Jakob Bornecrantz | |
2009-08-22 | i915g: Remove bad assert on fence | Jakob Bornecrantz | |
2009-08-21 | egl_softpipe: Do not flush unlinked context. | Chia-I Wu | |
An unlinked context is destroyed after _eglMakeCurrent. Flushing such context would cause segfault. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-21 | st/egl: Add support for drmModeDirtyFB command if found | Jakob Bornecrantz | |
2009-08-20 | nv50: use VTX_ATTR_nF for constant vtxelts | Christoph Bumiller | |
2009-08-20 | nv50: set vertex buffer limits | Christoph Bumiller | |
2009-08-20 | nv50: modify vbo format to hw translation, add BGRA swizzle | Christoph Bumiller | |
2009-08-20 | st/egl: Open the first drm node | Jakob Bornecrantz | |
At least its better then hardcoded to i915 | |||
2009-08-20 | tgsi: when printing/dumping programs indent loops and conditionals | Brian Paul | |
2009-08-20 | tgsi: check for SOA dependencies in SSE and PPC code generators | Brian Paul | |
Fall back to interpreter for now. This doesn't happen very often. | |||
2009-08-20 | tgsi: handle SOA dependencies for MOV/SWZ | Brian Paul | |
SOA dependencies can happen when a register is used both as a source and destination and the source is swizzled. For example: MOV T, T.yxwz; would expand into: MOV t0, t1; MOV t1, t0; MOV t2, t3; MOV t3, t2; The second instruction will produce the wrong result since we wrote to t0 in the first instruction. We need to use an intermediate temporary to fix this. This will take more work to fix for all TGSI instructions. This seems to happen with MOV instructions more than anything else so fix that case now and warn on others. Fixes piglit glsl-vs-loop test (when not using SSE). See bug 23317. | |||
2009-08-20 | tgsi: added tgsi_full_instruction::Flags field | Brian Paul | |
Users of the parser can make use of this. | |||
2009-08-19 | gallium: rename copy/fill_rect utility functions | Brian Paul | |
2009-08-19 | gallium: fix tags target in Makefile.template | Brian Paul | |
2009-08-19 | tgsi: Add missing include. | José Fonseca | |
(cherry picked from commit d2787c02c130b1fe20d0c032d468622f2fdaef79) | |||
2009-08-19 | tgsi: Fix typo in ureg constant creation. | José Fonseca | |
(cherry picked from commit aa40c9abc7787fdf46cb661a4d0bb8bec513fc63) | |||
2009-08-19 | st/xlib: remove a couple more 'fake' references | Keith Whitwell | |
2009-08-19 | st/xlib: remove dead ungrab helper | Keith Whitwell | |
2009-08-19 | tgsi: silence compiler warning | Keith Whitwell | |
2009-08-19 | tgsi: remove unused function argument | Keith Whitwell | |
2009-08-19 | tgsi: add missing functionality to support instructions with labels | Keith Whitwell | |
Could previously emit opcodes with label arguments, but was no way to patch them with the actual destinations of those labels. Adds two functions: ureg_get_instruction_number - to get the id of the next instruction to be emitted ureg_fixup_label - to patch an emitted label to point to a given instruction number. Need some more complex examples than u_simple_shader, so far this has only been compile-tested. | |||
2009-08-18 | r300g: Force off ZTOP optimizations for now. | Corbin Simpson | |
2009-08-18 | r300g: Utilize DONTBLOCK. | Corbin Simpson | |
Also ALGYRHYTHMS. | |||
2009-08-18 | radeon-gallium: Oh, look, we *do* already support DONTBLOCK. | Corbin Simpson | |
Well, okay, the kernel doesn't, but that's no excuse for us! :3 |