Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-15 | nv50: align registers used with TEX to 4 | Christoph Bumiller | |
The TEX instruction is passed the first index of a contiguous range of 4 TEMP registers that contain coordinates / LOD and, after execution, the texel values. It seems the first index is required to be a multiple of 4 on some (older ?) cards. | |||
2009-08-14 | nv50: fix mipmap offsets and tiling | Christoph Bumiller | |
The hardware expects a texture's tile mode to change with the mipmap level. Also, only multiply by block size once to obtain size. | |||
2009-08-14 | nv50: make sure we don't re-emit outdated scissor state | Christoph Bumiller | |
Since we don't turn off scissors, we need to update the stateobj when the framebuffer size changes. | |||
2009-08-14 | nv50: make use of the y-origin switch | Christoph Bumiller | |
Now that we know how to make the hardware have y-coordinate origin top, we can get rid of all the inversion introduced earlier. | |||
2009-08-14 | nv50: fix typo in REALLOC's 2nd argument in ctor_immd | Christoph Bumiller | |
2009-08-11 | gallium/trace: remove stray semicolons | Brian Paul | |
2009-08-11 | gallium/identity: remove stray semicolons | Brian Paul | |
2009-08-12 | i915g: Check relocs as well | Jakob Bornecrantz | |
2009-08-11 | gallium: Add texture usage information to surface_buffer_create | Jakob Bornecrantz | |
We need aditional meta data about the usage of the surface in softpipe because we need to be able tell the diffrence between PRIMARY and DISPLAY_TARGET surfaces. | |||
2009-08-11 | r300g: Fix up remaining VAP_CNTL_STATUS writes for big endian. | Michel Dänzer | |
2009-08-11 | r300g: Emit relocations for pitch registers. | Michel Dänzer | |
Fixes CS failures with tiling enabled kernels. | |||
2009-08-11 | r300g: a typo of debug message | Cooper Yuan | |
2009-08-07 | r300g: Knock out another fragment of invariant state. | Corbin Simpson | |
Colorbuffer setup will always happen. | |||
2009-08-07 | gallium: Move minify() to u_math. | Corbin Simpson | |
minify() is usually used in mipmap size calculation. Strangely enough, we all defined it as MAX2(1, d >> 1); imagine that. :3 | |||
2009-08-07 | r300g: Remove r300_constant_buffer::user_count. | Corbin Simpson | |
Not needed with new compiler. | |||
2009-08-08 | i915g: Don't forget x/y coords in transfers | Jakob Bornecrantz | |
Fixes demos/ray. | |||
2009-08-06 | identity: Use the correct texture | Jakob Bornecrantz | |
2009-08-06 | i915g: Dirty fix for VBO module double flush assert | Jakob Bornecrantz | |
2009-08-05 | i915g: Treat primary textures as scanout buffers | Jakob Bornecrantz | |
2009-08-05 | trace: Use correct texture in drm_api wrapper | Jakob Bornecrantz | |
2009-08-05 | softpipe: Also defere primary textures to backend | Jakob Bornecrantz | |
2009-08-04 | r300g: Slightly saner initialization of some texture / transfer fields. | Michel Dänzer | |
2009-08-02 | Merge commit 'nha/r300-compiler-gallium' | Corbin Simpson | |
2009-07-31 | Rename TGSI LOOP instruction to better match theri usage. | Michal Krol | |
The LOOP/ENDLOOP pair is renamed to BGNFOR/ENDFOR as its behaviour is similar to a C language for-loop. The BGNLOOP2/ENDLOOP2 pair is renamed to BGNLOOP/ENDLOOP as now there is no name collision. | |||
2009-07-30 | r300g: Use radeon compiler for fragment programs | Nicolai Hähnle | |
This is entirely untested on R500, and needs more testing on R300. | |||
2009-07-30 | r300g: Remove extraneous printf | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-07-30 | r300g: Use r300compiler for vertex shaders | Nicolai Hähnle | |
2009-07-30 | softpipe: Mark texture dirty when unmapped. | Chia-I Wu | |
When a texutre transfer is mapped for writing, mark the texture dirty when unmapped. This was done in surface creation, and this commit moves it to happen in texture unmapping. This fixes subtex test in progs/tests/. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-07-29 | nv50: support non-blocking query_result() | Ben Skeggs | |
2009-07-29 | nouveau: map_range returning -EBUSY isn't necessarily an error | Ben Skeggs | |
2009-07-29 | nv50: correct zeta formats | Christoph Bumiller | |
What was Z24S8 before is actually S8Z24, and what we had for Z16 is actually X8Z24. Now, we also have the REAL Z24S8 and I added Z32_FLOAT as well; most of the formats need different tile_flags. | |||
2009-07-29 | nv50: use new 2D surface format names | Christoph Bumiller | |
2009-07-29 | nv50: support more vtxelt formats | Christoph Bumiller | |
NOTE: we must not try to emit buffer relocations when vtxbuf_nr is 0 but vtxelt_nr is not | |||
2009-07-29 | nv50: should use uint32_t ptr in draw_elements_inline_u32 | Christoph Bumiller | |
2009-07-29 | nv50: TIC/TSC fixes and additions | Christoph Bumiller | |
Red and blue were interchanged in TIC. Add border color and some formats. | |||
2009-07-29 | nv50: fix sx/dx typo in transfer_rect_m2mf | Christoph Bumiller | |
2009-07-29 | nv50: fix viewport transform | Christoph Bumiller | |
The translation also needs to be inverted, and in bypass mode the state tracker incorrectly assumes that Y = 0 = TOP, so we need inversion there to; NDC clipping has to be deactivated explicitly. | |||
2009-07-29 | nv50: use correct scissor reg | Christoph Bumiller | |
2009-07-27 | nouveau: swizzle a single row or column, doing it one pixel at a time | Patrice Mandin | |
2009-07-26 | r300g: Fix two trivial texture size issues. | Corbin Simpson | |
Next thing to fix: progs/tests/mipgen. | |||
2009-07-26 | r300g: Add some debugging, correct little bits of math in texture setup. | Corbin Simpson | |
Simple stuff still works, but not sure about some of the more complex things. | |||
2009-07-26 | nouveau: only swizzle square textures for copy | Patrice Mandin | |
2009-07-26 | nouveau: Take into account destination position for copy_swizzle, need to ↵ | Patrice Mandin | |
split copy a bit more | |||
2009-07-26 | nouveau: Recursively swizzle an NPOT sized copy | Patrice Mandin | |
2009-07-24 | nouveau: use nv04_surface_copy_swizzle only for POT sizes | Patrice Mandin | |
2009-07-23 | r300g, radeon-gallium: Fix API, cleanup. | Corbin Simpson | |
Something called "validate" should return FALSE on failure, not TRUE. | |||
2009-07-23 | r300g: PIPE_CAP_BLEND_EQUATION_SEPARATE. | Corbin Simpson | |
2009-07-23 | gallium: remove deprecated TGSI opcodes | Keith Whitwell | |
Various opcodes which can be implemented trivially with other TGSI opcodes, such as matrix multiplication and negation. These were not used by any state tracker or implemented by any of the drivers. | |||
2009-07-23 | r300g: Actually mark shaders as translated/untranslated. | Corbin Simpson | |
Also trust that Gallium will not give us TGSI that miscounts shader consts. This creates a 20x speedup on glxgears, from 8 FPS to 160 FPS. | |||
2009-07-22 | cell: update TGSI_OPCODE_ cases | Brian Paul | |