Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-26 | util: fix CPU detection on OS X | nobled | |
s/PIPE_OS_DARWIN/PIPE_OS_APPLE, since there is no PIPE_OS_DARWIN. Acked-by: Vinson Lee <vlee@vmware.com> | |||
2010-07-26 | util: fix another mutex leak in mempool | Marek Olšák | |
By fixing one, I introduced another. Crap. | |||
2010-07-26 | util: fix mutex leaks in mempool | Marek Olšák | |
2010-07-23 | util: Add PIPE_OS_CYGWIN to u_network. | Vinson Lee | |
2010-07-23 | draw: add small ybias factor for drawing wide points | Brian Paul | |
Fixes minor rasterization error detected by some tests. | |||
2010-07-22 | tgsi: Fix error message on invalid swizzle parse | Jakob Bornecrantz | |
2010-07-22 | draw: re-order optimization passes depending on LLVM version, 32/64-bit | Brian Paul | |
This is a work-around for an apparent bug in LLVM seen with piglit's glsl-vs-sqrt-zero test. | |||
2010-07-22 | draw: added new assertions to clipping code | Brian Paul | |
2010-07-21 | draw: disable depth clipping if depth clamp is enabled | Marek Olšák | |
2010-07-21 | cso: handle depth clamp | Marek Olšák | |
2010-07-21 | draw: tweak aa line width threshold and sampling | Brian Paul | |
Set sampler max_lod to avoid sampling the 1x1 and 2x2 mipmap levels. Fixes piglit line-aa-width test, fd.o bug 29160. | |||
2010-07-21 | gallivm: replace has_indirect_addressing field with indirect_files field | Brian Paul | |
Instead of one big boolean indicating indirect addressing, use a bitfield indicating which register files are accessed with indirect addressing. Most shaders that use indirect addressing only use it to access the constant buffer. So no need to use an array for temporary registers in this case. | |||
2010-07-21 | tgsi: added tgsi_shader_info::indirect_files field | Brian Paul | |
Indicates which register files are accessed with indirect addressing. | |||
2010-07-21 | gallivm: refactor code into get_indirect_offsets() function | Brian Paul | |
2010-07-21 | gallivm: added comment | Brian Paul | |
2010-07-21 | gallivm: remove extraneous braces | Brian Paul | |
2010-07-21 | gallivm: no longer do indirect addressing in get_temp_ptr() | Brian Paul | |
2010-07-21 | gallivm: implement correct indirect addressing of temp registers | Brian Paul | |
As with indexing the const buffer, the ADDR reg may have totally different values for each element. Need to use a gather operation. | |||
2010-07-21 | gallivm: re-org, comments for get_temp_ptr() | Brian Paul | |
2010-07-21 | draw: whitespace clean-up | Brian Paul | |
2010-07-21 | gallivm: rename a var to avoid compiler warnings | Brian Paul | |
2010-07-20 | gallivm: fix indirect addressing of constant buffer | Brian Paul | |
The previous code assumed that all elements of the address register were the same. But it can vary from pixel to pixel or vertex to vertex so we must use a gather operation when dynamically indexing the constant buffer. Still need to fix this for the temporary register file... | |||
2010-07-20 | gallivm: added lp_build_const_int32() helper | Brian Paul | |
2010-07-20 | draw: correctly handle max_index=0xffffffff case in vcache code | Brian Paul | |
If max_index=0xffffffff and elt_bias > 0 the test for elt_bias + max_index >= DRAW_PIPE_MAX_VERTICES was wrong. Check earlier if max_index=0xffffffff and do the "fail" case. This fixes the piglit draw-elements-base-vertex test (and probably some other things). | |||
2010-07-20 | util: mempool: initialize last block's magic number in a page | Marek Olšák | |
2010-07-19 | draw: fix incorrect instancing divisor in LLVM code | Brian Paul | |
2010-07-19 | util: remove the dummy field in mempool | Marek Olšák | |
It should allocate less memory now. | |||
2010-07-19 | util: add dummy field to empty structure types | Brian Paul | |
Empty structure types aren't allowed with MSVC. I haven't tested this change. Hope I haven't broken it... | |||
2010-07-19 | util: add a memory pool for equally sized memory allocations | Marek Olšák | |
malloc/free are in O(1). | |||
2010-07-16 | scons: Fix Cygwin build. | Vinson Lee | |
The Cygwin SCons build needed several file names to be fully qualified. | |||
2010-07-16 | draw: updated debug/dump code | Brian Paul | |
2010-07-16 | draw: added array element debug / bounds checking code (disabled) | Brian Paul | |
2010-07-16 | draw/llvm: adjust the instance id at run time | Zack Rusin | |
fixes instancing in draw llvm | |||
2010-07-16 | draw: use the instance id when fetching vertex data | Zack Rusin | |
2010-07-15 | draw: update comments for drawing functions | Brian Paul | |
2010-07-15 | draw: move prototype, update comment | Brian Paul | |
2010-07-15 | tgsi: Remove dead assignment in uprcase function. | Vinson Lee | |
2010-07-13 | Merge branch 'mesa-2d-registers' | Zack Rusin | |
2010-07-12 | os: remove gratuitous pipe_barrier placeholder code | nobled | |
There's already an implementation of pipe_barrier using the other pipe_* primitives; just use that on Windows, too. Now Windows passes pipe_barrier_test. | |||
2010-07-12 | os, rbug: remove PIPE_THREAD_HAVE_CONDVAR | nobled | |
The new default implementation of pipe_condvar makes it unnecessary. | |||
2010-07-12 | os: Implement pipe_condvar on Windows Vista and later | nobled | |
Unfortunately compiling with these defines enabled would mean Gallium can't run on Windows XP/2003 or older. Todo: Need a macro to declare if we don't care about WinXP compatibililty. | |||
2010-07-12 | os: Implement pipe_condvar on win32 | nobled | |
Or at least a little of it. This version will sleep for a fixed amount of time instead of just deadlocking, which is a slight improvement. Also do the same thing on any unrecognized platform. | |||
2010-07-12 | u_blitter: add draw_rectangle callback which can be overridden by a driver | Marek Olšák | |
2010-07-12 | u_blitter: clean up the texcoord computations | Marek Olšák | |
2010-07-12 | u_blitter: simplify blitter_set_rectangle | Marek Olšák | |
2010-07-12 | u_blitter: rename blitter->base, add a way to get a pipe context from blitter | Marek Olšák | |
2010-07-10 | tgsi: make sure that we print out the adjacency prims correctly | Zack Rusin | |
2010-07-10 | draw: fix decomposition to work with adjacency primitives | Zack Rusin | |
2010-07-10 | mesa: get the translation from mesa 2d regs to tgsi working | Zack Rusin | |
first working version of arb_geometry_shader4 | |||
2010-07-08 | draw: Fix off-by-one error in assert. | Vinson Lee | |
textures is an array of size PIPE_MAX_VERTEX_SAMPLERS. |