aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
Commit message (Collapse)AuthorAgeFilesLines
* gallium: Move minify() to u_math.Corbin Simpson2009-08-076-29/+5
| | | | | minify() is usually used in mipmap size calculation. Strangely enough, we all defined it as MAX2(1, d >> 1); imagine that. :3
* r300g: Remove r300_constant_buffer::user_count.Corbin Simpson2009-08-073-6/+3
| | | | Not needed with new compiler.
* i915g: Don't forget x/y coords in transfersJakob Bornecrantz2009-08-081-0/+2
| | | | Fixes demos/ray.
* i915g: Don't try to free a mapped buffer at shutdownJakob Bornecrantz2009-08-081-1/+0
|
* util: fix incorrect assertionBrian Paul2009-08-071-1/+1
| | | | Check that the dest surface/format is renderable.
* util: include u_surface.h, added commentBrian Paul2009-08-071-0/+2
|
* util: use util_same_surface() to compare surface pointersBrian Paul2009-08-071-3/+3
|
* util: added util_same_surface() helper functionBrian Paul2009-08-071-0/+17
|
* i915g: Compile with sconsJakob Bornecrantz2009-08-061-1/+4
|
* identity: Use the correct textureJakob Bornecrantz2009-08-061-1/+1
|
* st/xorg: If we have DRI2 we should also have some sort of hw supportJakob Bornecrantz2009-08-061-1/+1
|
* i915g: Always run in sync with the HWJakob Bornecrantz2009-08-061-0/+4
|
* i915g: The i915 seems more happier with sampler domain so lets use thatJakob Bornecrantz2009-08-061-1/+1
|
* i915g: Dirty fix for VBO module double flush assertJakob Bornecrantz2009-08-061-4/+12
|
* i915g: Switch to mapping the batch buffer instead of using subdataJakob Bornecrantz2009-08-063-11/+27
|
* egl_softpipe: Add support for pbuffer binding.Chia-I Wu2009-08-051-0/+84
| | | | | | | This adds support for eglBindTexImage and eglReleaseTexImage. They rely on the state tracker to do the real work. Signed-off-by: Chia-I Wu <[email protected]>
* egl_softpipe: Flush when switching current context.Chia-I Wu2009-08-051-0/+4
| | | | Signed-off-by: Chia-I Wu <[email protected]>
* Merge branch 'mesa_7_5_branch'Brian Paul2009-08-051-16/+64
|\ | | | | | | | | | | Conflicts: src/mesa/main/state.c
| * util: added comment/question about blit clippingBrian Paul2009-08-051-0/+1
| |
| * util: added util_blit_pixels() overlap testBrian Paul2009-08-051-2/+34
| | | | | | | | A comment alluded to this. Now it's checked.
| * util: fix util_blit_pixels() test for surface_copy() pathBrian Paul2009-08-051-16/+24
| | | | | | | | | | | | For the surface_copy() path require same format, no flipping and no stretching. Fixes progs/tests/copypixrate -blit
| * util: reformatting and commentsBrian Paul2009-08-051-3/+10
| |
* | st/xorg: Make it work againJakob Bornecrantz2009-08-055-10/+86
| |
* | st/egl: Create primary texture not display targetJakob Bornecrantz2009-08-051-2/+2
| |
* | i915g: Treat primary textures as scanout buffersJakob Bornecrantz2009-08-054-14/+58
| |
* | i915g: Link with trace on EGL and XorgJakob Bornecrantz2009-08-052-0/+2
| |
* | trace: Use correct texture in drm_api wrapperJakob Bornecrantz2009-08-051-1/+1
| |
* | softpipe: Also defere primary textures to backendJakob Bornecrantz2009-08-051-1/+2
| |
* | r300g: Slightly saner initialization of some texture / transfer fields.Michel Dänzer2009-08-042-6/+5
| |
* | egl_softpipe: Add support for pbuffer surface.Chia-I Wu2009-08-031-7/+96
| | | | | | | | Signed-off-by: Chia-I Wu <[email protected]>
* | egl: Replace IsBound by a pointer to the binding.Chia-I Wu2009-08-033-4/+4
| | | | | | | | | | | | | | | | | | IsBound tells if a context or surface is current. What it does not tell is, to which thread a context is current, or to which context a surface is current. This commit replaces IsBound by a pointer to the binding thread or context. Signed-off-by: Chia-I Wu <[email protected]>
* | tgsi: report opcode name in addition to the number when translation failsBrian Paul2009-08-032-3/+9
| |
* | tgsi: added tgsi_get_opcode_name()Brian Paul2009-08-032-0/+13
| |
* | gallium: comments, reformattingBrian Paul2009-08-031-17/+32
| |
* | Merge commit 'nha/r300-compiler-gallium'Corbin Simpson2009-08-0221-1957/+1035
|\ \
| * | r300g: Use radeon compiler for fragment programsNicolai Hähnle2009-07-3017-1312/+450
| | | | | | | | | | | | This is entirely untested on R500, and needs more testing on R300.
| * | r300g: Remove extraneous printfNicolai Hähnle2009-07-301-2/+0
| | | | | | | | | | | | Signed-off-by: Nicolai Hähnle <[email protected]>
| * | r300g: Use r300compiler for vertex shadersNicolai Hähnle2009-07-3016-750/+692
| | |
* | | mesa st: Move logbase2 function to util/u_math.hPatrice Mandin2009-08-011-5/+18
| | |
* | | Rename TGSI LOOP instruction to better match theri usage.Michal Krol2009-07-3112-44/+44
|/ / | | | | | | | | | | | | | | 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.
* | softpipe: Mark texture dirty when unmapped.Chia-I Wu2009-07-301-6/+5
| | | | | | | | | | | | | | | | | | | | 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 <[email protected]>
* | Merge branch 'mesa_7_5_branch'Brian Paul2009-07-301-2/+0
|\|
| * util: _debug_printf should print even when DEBUG is not definedKeith Whitwell2009-07-291-2/+0
| | | | | | | | | | | | | | | | | | | | | | The leading underscore is meaningful... This function is used by _warning and _error functions as well as the more common debug_printf(). debug_printf (without underscore) gets turned off when DEBUG is disabled, but warning/error messages still use this function to get their message out. (cherry picked from commit 0ac879dca797360570543d5bd0fd64f8fb8e566e)
* | tgsi: Add proper constraints to sanity.Michal Krol2009-07-301-2/+22
| |
* | tgsi: Declare a LOOP register.Michal Krol2009-07-305-7/+12
| | | | | | | | | | | | | | The only valid usage for LOOP/ENDLOOP instructions is LOOP[0] as a destination register. The only valid usage for the remaining instructions is LOOP[0].x as an indirect register.
* | tgsi: Fix number operands for LOOP/ENDLOOP.Michal Krol2009-07-301-2/+2
| |
* | tgsi: Document LOOP/ENDLOOP instruction operation.Michal Krol2009-07-301-2/+18
| |
* | gallium: fix SSE shadow texture instructionsBrian Paul2009-07-291-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When sampling a 2D shadow map we need 3 texcoord components, not 2. The third component (distance from light source) is compared against the texture sample to return the result (visible vs. occluded). Also, enable proper handling of TGSI_TEXTURE_SHADOW targets in Mesa->TGSI translation. There's a possibility for breakage in gallium drivers if they fail to handle the TGSI_TEXTURE_SHADOW1D / TGSI_TEXTURE_SHADOW2D / TGSI_TEXTURE_SHADOWRECT texture targets for TGSI_OPCODE_TEX/TXP instructions, but that should be easy to fix. With these changes, progs/demos/shadowtex.c renders properly again with softpipe.
* | nv50: support non-blocking query_result()Ben Skeggs2009-07-291-5/+5
| |
* | nouveau: map_range returning -EBUSY isn't necessarily an errorBen Skeggs2009-07-291-3/+6
| |