summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/cso_cache
AgeCommit message (Collapse)Author
2008-04-23fix the simple hash finding function and use itZack Rusin
2008-04-24gallium: Fix texture refcount leak.José Fonseca
2008-04-22In case the 'func' is deleting the state move the iterator beforeZack Rusin
calling it.
2008-04-22gallium: remove assertionsBrian Paul
It's possible the current vs/fs is null when cso_save_vertex/fragment_shader() is called.
2008-04-22cso: fix vs/fs confusionKeith Whitwell
2008-04-22cso: Fix build on Win32.Michal Krol
2008-04-21make the api consistent (all set functions return pipe_error status)Zack Rusin
2008-04-21handle some of the possible allocation failures within the hash itselfZack Rusin
2008-04-21initial stab at error handling in csoZack Rusin
2008-04-21cso: disable not-really-working cso_set_*_shader() funcsKeith Whitwell
2008-04-21cso: provide functions to bind fs/vs handles directlyKeith Whitwell
2008-04-21cso: propogate one easy error - many moreKeith Whitwell
2008-04-22gallium: Hash the fragment shader tokens, instead of pipe_shader_state.José Fonseca
PS: pipe_shader_state should probably go away now that it is reduced to a single pointer.
2008-04-21gallium: Do not mistake pipe state objects for state tracker state objects.José Fonseca
2008-04-20gallium: Refcount textures.José Fonseca
Pipe driver does refcount textures. If cso_context does not, dangling pointers appear.
2008-03-23gallium: Fix memory leak.José Fonseca
pipe cso's were being destroyed, but the hash elements themselves not. proper fix is IMHO add a destructor callback to cso_hash.
2008-03-20gallium: temporarily disable the memcmp() in cso_set_framebuffer()Brian
The memcmp() fails to detect buffer size changes...
2008-03-19gallium: fix bug in cso_single_sampler_done() in computation of nr_samplersBrian Paul
Need to find highest used sampler so search from end toward beginning.
2008-03-19gallium: implement CSO save/restore functions for use by meta operations ↵Brian
(blit, gen-mipmaps, quad-clear, etc) Also, additional cso_set_*() functions for viewport, framebuffer, blend color, etc. state.
2008-03-18gallium: added cso_unset_*() functionsBrian
If we go behind the CSO context's back and set pipe state directly we need to invalidate the CSO's 'current' pointers. This will be revisited...
2008-03-13add a way of removing an exact iterator from the hashZack Rusin
2008-03-13gallium: remove a debug printfBrian Paul
2008-03-13gallium: Add a bit of documentation to cso_hash.José Fonseca
2008-03-12document hash collision resolutionsZack Rusin
2008-03-11gallium: fix some cso_state_callback cast warningsBrian
2008-03-11gallium: fix fs/vs typo in cso_set_vertex_shader()Brian
2008-03-10fix double deletionZack Rusin
plus, if the current hash is bigger than max size make sure we delete enough from it
2008-03-09gallium: avoid deleting currently-bound CSO's on cache destructionKeith Whitwell
2008-03-09cso: fix line endingsKeith Whitwell
2008-03-09cso: Use MALLOCKeith Whitwell
2008-03-09cso: add a higher-level interface which does all pipe interactions to set a ↵Keith Whitwell
given state
2008-02-27gallium: Use stricter types.José Fonseca
VC++ won't silently convert a pointer to a function with typed pointer arguments to one with void pointer arguments.
2008-02-26gallium: Fix build on Windows.Michal Krol
2008-02-26implement cache limits for csoZack Rusin
by default set to 4096, which might be on the large side
2008-02-26add an explicit callback decleration and use it to silence warningsZack Rusin
2008-02-26hide cso cache definition and add some initial code for size limitingZack Rusin
the caches
2008-02-26implement deleting of driver side cached state in cso'sZack Rusin
2008-02-25Replace standand library functions by portable ones.José Fonseca
2008-02-25Add Zack's comments about CSOs.José Fonseca
2008-02-23gallium: Countour MSVC's pickyness for structures returned by value.José Fonseca
2008-02-23gallium: Wrap decls in extern "C".José Fonseca
2008-02-23gallium: Add cso convenience routine (from Keith's patch).José Fonseca
2008-02-23gallium: MSVC fixes.José Fonseca
2008-02-19Portability fixes.José Fonseca
Eliminate C99/C++ constructs. (We should actually disable gcc C99 syntax options if we are serious about portability.)
2008-02-19Simplify makefile boilerplate code.José Fonseca
Don't define ASM_SOURCES variable globally -- reserve that variable to be defined locally by makefiles, together with C_SOURCES and CPP_SOURCES.
2008-02-18Update scons build for new code layout.José Fonseca
2008-02-18Code reorganization: split gallium and mesa makefiles.José Fonseca
In other words, don't build src/gallium source code from within src/mesa/Makefile. Also, allow to customize which gallium auxiliary dirs, driver driver, winsys dirs get built from the config/* files.
2008-02-15Code reorganization: s/aux/auxiliary/.José Fonseca
"aux" is a reserved name on Windows (X_X)