summaryrefslogtreecommitdiff
path: root/src/gallium
AgeCommit message (Collapse)Author
2008-06-24gdi: Update for surface_alloc_storage changes.José Fonseca
2008-06-23gallium: added support for fixed-point formats, drawingBrian Paul
2008-06-23gallium: code for PIPE_SUBSYSTEM_WINDOWS_USERJonathan White
2008-06-24gallium: Use the more portable PIPE_ARCH_* PIPE_CC_* macros instead of ↵José Fonseca
ad-hoc ones.
2008-06-24gallium: WinCE does not have cosf, sinf, etc.José Fonseca
2008-06-23gallium: in softpipe_get_tex_surface() use the pitch specified in the ↵Brian Paul
softpipe_texture object. Fixes a pitch/width mix-up.
2008-06-23i915: Add render and texture support for tiled texture and buffersJakob Bornecrantz
This is step towards tiled textures and buffer support for i915. But the tiled attribute is never set.
2008-06-23gallium: fix Y-inverted copiesBrian Paul
Don't require the caller to pass a non-intuitive negative src_y coord anymore when doing a src-inverted copy.
2008-06-23gallium: change surface_copy()'s do_flip to booleanBrian Paul
2008-06-23gallium: fix bad srcy coord if do_flipBrian Paul
2008-06-23gallium: fix bad srcy coord if do_flipBrian Paul
2008-06-23gallium: added some assertionsBrian Paul
2008-06-23util: Blit can now copy from texture to surfaceJakob Bornecrantz
2008-06-23gallium: Fix warning in u_draw_quad.hJakob Bornecrantz
2008-06-23i915: Removed level_offset from i915_textureJakob Bornecrantz
All offsets are now on image_offset.
2008-06-22draw: fix non-i386 buildsKeith Whitwell
2008-06-20gallium: fix invalid call to draw_set_mapped_constant_buffer()Brian Paul
We were indexing sp_constants[i] outside the loop so i was 2. Replace i with PIPE_SHADER_VERTEX. Also, replace magic '2' with PIPE_SHADER_TYPES in a few places.
2008-06-20gallium: fix some surface usage bugsBrian Paul
When a surface is created with GPU_WRITE that really means "GPU render" and that can involve reads (blending). Set surface usage to PIPE_BUFFER_USAGE_CPU_READ + WRITE. Fixes progs/demos/lodbias demo. Also, mark texture as 'modified' when mapped for writing so that the tile cache can know when to freshen a cached tile. Fixes glTexSubImage2D().
2008-06-20egl: added cpp assertions/sanity checksBrian Paul
2008-06-20egl: added null ptr checksBrian Paul
2008-06-19egl: use dlsym() to try to identify APIsBrian Paul
2008-06-19i915: Fixed cubemap layoutsJakob Bornecrantz
Apprently we shouldn't do all the advanced layout operation for none compressed formats. The compressed code was also broken, its currently disabled, but should be fixed once i915simple starts to support compressed formats.
2008-06-19gallium: Handle malloc failure.José Fonseca
2008-06-19i915: Refractored and clean up i915_texture.cJakob Bornecrantz
2008-06-19gallium: Add extra parenthesis as advised by gcc.José Fonseca
2008-06-19util: Add missing format names.Michal Krol
2008-06-19draw: Fix MSVC integer size conversion warning.José Fonseca
2008-06-18gallium: additional fixes to ensure even number of vertices per bufferBrian Paul
2008-06-18gallium: split long prims into chunks with an even number of verticesBrian Paul
This fixes culling "parity" errors when splitting long tri strips. Splitting strips into chunks with an odd number of vertices causes front/back-face orientation to get reversed and upsets culling.
2008-06-18egl: omit libmesa.a glapi.c from libraryBrian Paul
2008-06-18gallium: remove duplicated u_mm.c in file listBrian Paul
2008-06-18egl: call st_get_proc_address()Brian Paul
2008-06-18gallium: Remove PIPE_FORMAT_A8UB8UG8SR8S_NORM definition.Michal Krol
2008-06-18i915: Fix for s8_z24 textures not being shownJakob Bornecrantz
2008-06-17gallium: Add facilities for mixed pipe formats.Michal Krol
2008-06-17i915: Made region pool a slabpoolJakob Bornecrantz
2008-06-17i915: Max and Min lod now worksJakob Bornecrantz
2008-06-14util: Use pf_get_size().Michal Krol
2008-06-13i915: Improved the not used tile codeJakob Bornecrantz
2008-06-13i915: Fix offsets not being used for surface targetsJakob Bornecrantz
2008-06-13i915: Fix most of the clear problemsJakob Bornecrantz
trivial/clear-undefined still fails
2008-06-13gallium: Fix PIPE_FORMAT_A2B10G10R10_UNORM definition.Michal Krol
Whoops!
2008-06-13gallium: Add PIPE_FORMAT_A2B10G10R10_UNORM.Michal Krol
2008-06-13gallium: Allow pipe format component sizes to be specifiedMichal Krol
with finer granularity. This will allow us to define A2R10G10B10 format.
2008-06-13i915: Messed up lineloop now worksJakob Bornecrantz
2008-06-13i915: Support all primtive types in vbuf pathJakob Bornecrantz
2008-06-12gallium: disable the codegen for TGSI_OPCODE_EXPBASE2 for now.Brian Paul
The x86 code seems to fail for exponents of 4 or larger. See glean's vertProg1/EX2 test.
2008-06-12gallium: fix SSE codegen for instructions that use both a CONSTANT and IMMEDIATEKeith Whitwell
Fixes codegen for instructions like MUL dst, CONST[0], IMM[0]; the two operands would up getting aliased in the x86/sse code. Fixes glean/vertProg1/fogparams test.
2008-06-12glsl: implement variable array indexesZack Rusin
2008-06-12pb: don't assert(0) on failure to allocate - this is a normal condition in ↵Keith Whitwell
many drivers