Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-23 | r300: minor optimization | Maciej Cencora | |
use properly implemented OUT_BATCH_TABLE where possible | |||
2009-08-23 | ARB prog lexer: Fix lexer to eat both DOS and Unix line endings | Ian Romanick | |
2009-08-23 | r600: use persistent bos for shaders | Alex Deucher | |
2009-08-23 | r600: always emit CB base | Alex Deucher | |
Not doing so seems to cause lock-ups or rendering problems on some chips. I think there is an logic issue related to CB and VGT on some chips. We ran into similar issues in r600_demo IIRC. | |||
2009-08-23 | radeon: Fix compilation with legacy memory manager. | Pauli Nieminen | |
2009-08-23 | radeon: Check from kernel if dma buffer is idle. | Pauli Nieminen | |
This makes sure that objects are leaving wait list only when they are processed by gpu. Signed-off-by: Pauli Nieminen <suokkos@gmail.com> | |||
2009-08-22 | r600: make state emit more fine grained | Alex Deucher | |
Gives a nice speed boost in most apps since we only emit what state we need. | |||
2009-08-22 | ARB prog parser: include imports.h to kill some compiler warnings | Luo Jinghua | |
2009-08-22 | r600: move full state to radeon state atoms | Alex Deucher | |
2009-08-22 | r600: add support for RS880 | Alex Deucher | |
2009-08-22 | i965: Implement frag prog DPH like DP4 | Ian Romanick | |
DPH can output to any component, not just to X. This allows fpalu.c to run without hitting the assertion in emit_dph. | |||
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-22 | glx/dri2: Always use X drawable ID for DRI2 protocol. | Michel Dänzer | |
Fixes protocol errors in cases where the GLX ID is different. | |||
2009-08-22 | Fix r300 VBO support build on big endian. | Michel Dänzer | |
2009-08-21 | r600: better default state size. | Alex Deucher | |
Hopefully suokko's emit size impovements will land soon. | |||
2009-08-21 | Merge branch 'asm-shader-rework-1' | Ian Romanick | |
2009-08-21 | radeon: fix incorrect loop limit (warned by -O3) | Brian Paul | |
2009-08-21 | glx: initialize some local vars to silence warnings with -O3 | Brian Paul | |
2009-08-21 | egl: Make _eglChooseDriver return the filename of the driver. | Chia-I Wu | |
The real difference is that the driver suffix is now appended. This also fixes an annoying bug that EGL_DRIVER could not specify the path to a driver because a suffix was always appended. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-21 | egl: Remove dependency on libX11. | Chia-I Wu | |
libX11 is used to determine the screen number, which is in turned used to determine the DRI driver. However, the sysfs interface for determining the DRI driver is gone, and no working driver depends on this mechanism. Display string parsing is moved to a new function, _eglSplitDisplayString. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
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 | egl: Check for null display in handle checking. | Chia-I Wu | |
The display may be NULL when checking a handle. 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-21 | radeon: Add comment to explain logic for freeing dma buffers. | Pauli Nieminen | |
2009-08-20 | ARB prog parser: Revert part of previous change to constant parsing | Ian Romanick | |
The commit "ARP prog parser: Implement the spec, not what makes sense" broke the parsing of scalar constants. This commit reverts that part of that commit. Now vp_swizzle.c passes. | |||
2009-08-20 | r600: convert to using common radeon state atoms | Alex Deucher | |
switches more state handling to common code. We need should be more fine grained with the state atoms eventually. | |||
2009-08-20 | r600: improve state emission | Alex Deucher | |
Slowing migrating to atom based system like the other radeon drivers. | |||
2009-08-20 | r600: split state emit into block specific functions | Alex Deucher | |
We probably want to go finer grained eventually, but this is a good start. | |||
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-20 | r600: try and get everything in the draw in one IB | Alex Deucher | |
fixes corruption issues with apps like teapot and geartrain. | |||
2009-08-20 | r600: move misc regs from general state | Alex Deucher | |
These regs don't use the SET_CONTEXT_REG packet, so they weren't getting set correctly. | |||
2009-08-20 | mesa: add GL_DEPTH_STENCIL to glCopyPixels error check | Brian Paul | |
Plus, add a comment about 'type' error checking. See bug 19087. | |||
2009-08-20 | r600: rework emit code | Alex Deucher | |
make sure we allocate enough space for relocs | |||
2009-08-20 | radeon: Update regulary cs processing info from kernel. | Pauli Nieminen | |
This fixes problem that dma buffers were leaking in dri1 mode. Signed-off-by: Pauli Nieminen <suokkos@gmail.com> | |||
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 | radeon: fix typo in last dma patch | Alex Deucher | |
2009-08-19 | intel: Fix failure to commit -a --amend before last push. | Eric Anholt | |
2009-08-19 | intel: Align cubemap texture height to its padding requirements. | Eric Anholt | |