Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-14 | os: A stream for debug logging. | José Fonseca | |
Just a wrapper around os_log_message. Although it would probably make more sense to be the other way around. Also some comment fixes. | |||
2010-02-14 | util: Helper functions to dump all state objects. | José Fonseca | |
2010-02-14 | os: Add a growable string stream. | José Fonseca | |
2010-02-14 | os: Complement/improve stream inline helpers. | José Fonseca | |
2010-02-14 | os: Fix bad calloc. | José Fonseca | |
2010-02-14 | util: Update for os_stream changes. | José Fonseca | |
2010-02-14 | os: Make streams abstract. | José Fonseca | |
Also replace windows kernel stream with null implementation. It was severely limited and no easy means to test it now. | |||
2010-02-14 | gallivm: s/debug_dump_/util_dump_/ | José Fonseca | |
2010-02-14 | util: Rename u_debug_dump.[ch] -> u_dump.[ch]. | José Fonseca | |
I have more plans for this than mere debugging -- it will be an helper to provide human readible representations of all gallium state for the python state tracker. | |||
2010-02-14 | draw: Use util_format_name(). | José Fonseca | |
2010-02-14 | util: Use util_format_name(). | José Fonseca | |
2010-02-14 | util: Add pf_name() replacement: util_format_name(). | José Fonseca | |
2010-02-12 | util: Properly init memory for blitter CSOs. | Corbin Simpson | |
Fixes misrender on r300g. | |||
2010-02-12 | Merge branch 'gallium-dynamicstencilref' | Roland Scheidegger | |
2010-02-12 | Revert "util: Fix descriptors for R32_FLOAT and R32G32_FLOAT formats." | Michal Krol | |
This reverts commit aa0b671422880b99dc178d43d1e4e1a3f766bf7f. | |||
2010-02-12 | util: Fix descriptors for R32_FLOAT and R32G32_FLOAT formats. | Michal Krol | |
Fill in ones for missing components. | |||
2010-02-11 | gallium: make u_blitter code save/restore stencil ref values | Roland Scheidegger | |
2010-02-11 | gallium: give pipe_stencil_ref its own cso_save/restore functions | Roland Scheidegger | |
seems cleaner, and other dynamic state like viewport is handled that way too | |||
2010-02-11 | llvmpipe: Handle TGSI_TOKEN_TYPE_PROPERTY. | José Fonseca | |
Avoids assertion failures with certain shaders. | |||
2010-02-11 | gallivm: TGSI_OPCODE_CONT is not deprecated. | José Fonseca | |
Note that with FIXME instead of an assertion failure. Addresses fdo 25956. | |||
2010-02-11 | gallium: also save/restore stencil_ref in cso_save/restore_depth_stencil_alpha | Roland Scheidegger | |
makes life of state trackers easier | |||
2010-02-10 | os: Do not use Pthreads barrier functions on Mac OS X. | Vinson Lee | |
Pthreads barrier functions are not available on some POSIX platforms. | |||
2010-02-10 | gallium: cast to silence waring | Brian Paul | |
2010-02-10 | gallium: use os_time.h in pb_bufmgr_cache.c | Brian Paul | |
Untested, but seems straightforward. | |||
2010-02-10 | gallium: use os_time.h in u_timed_winsys.c | Brian Paul | |
2010-02-09 | gallium: don't put stencil ref value in pipe_depth_stencil_alpha_state | Roland Scheidegger | |
This will make driver's life a bit harder, however it makes sense that stencil reference value is not part of the pipe_depth_stencil_alpha_state, because it often (there are some algorithms which require this) changes more frequently than the rest of the dsa state. This is also encouraged by some graphic APIs. Treat it similar to pipe_blend_color. | |||
2010-02-09 | gallium/auxiliary: add -D__STDC_CONSTANT_MACROS | Brian Paul | |
Not sure why this is needed now, after the gallivm re-org. | |||
2010-02-09 | Merge branch 'gallium-nopointsizeminmax' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/nv10/nv10_state.c src/gallium/drivers/nv20/nv20_state.c src/gallium/drivers/nv50/nv50_program.c | |||
2010-02-09 | gallium: Remove prefilter member from pipe_sampler_state struct. | Michal Krol | |
2010-02-09 | tgsi: Gather cylindrical wrap info in tgsi_shader_info struct. | Michal Krol | |
2010-02-09 | tgsi: Add ureg_DECL_fs_input_cyl(). | Michal Krol | |
Allows one to declare fragment shader inputs with cylindrical wrap info. | |||
2010-02-09 | gallium: Add cylindrical wrap info to TGSI declaration. | Michal Krol | |
2010-02-09 | tgsi: Remove tgsi_dump_c.[ch]. | Michal Krol | |
Little utility after development stabilisation, use tgsi_dump instead. | |||
2010-02-08 | llvmpipe: switch to using dynamic stack allocation instead of registers | Zack Rusin | |
with mutable vars we don't need to follow the phi nodes. meaning that control flow becomes trivial as we don't have scan the rest of the tgsi to figure out the variable usage anymore. futhermore the memory2register pass promotes alloca/store/load to registers while inserting the right phi nodes. so we get simplicity and performance. | |||
2010-02-08 | gallivm: added lp_bld_misc.cpp to sources list | Brian Paul | |
2010-02-08 | gallivm: added gallivm/lp_bld_misc.cpp to Makefile | Brian Paul | |
2010-02-08 | llvmpipe: export the tgsi translation code to a common layer | Zack Rusin | |
the llvmpipe tgsi translation is a lot more complete than what was in gallivm so replacing the latter with the former. this is needed since the draw llvm paths will use the same code. effectively the proven llvmpipe code becomes gallivm. | |||
2010-02-06 | Gallium: Add Solaris atomic function definitions to u_atomic.h | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> | |||
2010-02-05 | tgsi: remove special-case code for fragment position | Brian Paul | |
Since the origin_lower_left / pixel_center_origin changes, we need to use the fragcoord info that's set up in setup_fragcoord_coeff(). The code in exec_declaration() was clobbering the the interpolated fragment position. Fixes progs/glsl/fragcoord.c demo. | |||
2010-02-05 | os: Don't assert on missing implementation of barrier init/destroy. Just usage. | José Fonseca | |
2010-02-05 | Merge remote branch 'origin/lp-binning' | José Fonseca | |
Conflicts: src/gallium/auxiliary/util/u_dl.c src/gallium/auxiliary/util/u_time.h src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_surface.c src/gallium/drivers/llvmpipe/lp_tex_cache.c src/gallium/drivers/llvmpipe/lp_tile_cache.c | |||
2010-02-04 | gallium: add point_quad_rasterization bit to rasterizer state | Roland Scheidegger | |
This determines if points should be rasterized according to GL point rules or as normal quads (GL point sprites / d3d points / d3d point sprites). | |||
2010-02-04 | auxiliary: util_stream -> os_stream | José Fonseca | |
2010-02-04 | os: Ensure header includes are outside extern "C" {}. | José Fonseca | |
2010-02-04 | util: Reimplement u_time on top of os_time. | José Fonseca | |
2010-02-04 | os: Time abstractions. | José Fonseca | |
Simplified version of u_time.[ch] | |||
2010-02-04 | os/os_memory_aligned.h: fix memory allocation alignment for 64 bits | José Fonseca | |
Based on Andreia Gaita <shana@jitted.com>'s patch. | |||
2010-02-04 | util: Disable u_time.c implementation for embedded. | José Fonseca | |
This needs to go into OS module. | |||
2010-02-04 | util: Add missing include. | José Fonseca | |
2010-02-04 | os: Add missing dummy threading definitions. | José Fonseca | |