summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2008-04-30gallium: use new buffer wrapper functions in p_inlines.hBrian Paul
This allows us to remove most of the direct references to winsys in the state tracker.
2008-04-30gallium: new pipe_buffer alloc/map/unmap/ref wrappersBrian Paul
2008-04-30gallium: consolidate the bitmap->texel conversion codeBrian Paul
2008-04-30gallium: create a new texture each time we init/flush the bitmap cacheBrian Paul
2008-04-30gallium: simplify texture format selectionBrian Paul
2008-04-29gallium: init hw_key with memset() to silence valgrind warningsBrian Paul
We shouldn't be hashing with keys that have uninitialized memory.
2008-04-29gallium: updated comment in xm_flush_frontbuffer()Brian Paul
2008-04-29gallium: test for new PIPE_ARCH_X86Brian Paul
2008-04-29gallium: flush pipe before updating bitmap textureBrian Paul
Fixes duplicated text bug in progs/tests/texwrap.c
2008-04-29silence p_debug.h:63: warning: ISO C forbids forward references to ↵Zack Rusin
‘enum’ types
2008-04-29gallium: declare pipe_format enum to silence warningsBrian Paul
2008-04-29gallium: add pack for _FLOAT formats to pack_ubKeith Whitwell
2008-04-29gallium: fix pack for A1R5B5G5Keith Whitwell
2008-04-29gallium: add pack for A4R4G4B4Keith Whitwell
2008-04-29gallium: add pack for A1R5B5G5Keith Whitwell
2008-04-29gallium: add debug_print_format() make it easier to print format error messagesKeith Whitwell
2008-04-29gallium: added some assertions to be sure the blit's surface formats are ↵Brian Paul
suitable
2008-04-29gallium: added some assertions to st_render_texture() to check surface formatBrian Paul
Make sure we can really render to the texture surface given its format.
2008-04-29gallium: fix broken GL_DEPTH_COMPONENT case in fallback_copy_texsubimage()Brian Paul
Also, make sure surfaces are suitable for blitting before calling util_blit_pixels().
2008-04-29mesa: added _mesa_scale_and_bias_depth_uint()Brian Paul
2008-04-29gallium: add \n to error stringsBrian Paul
2008-04-29gallium: fix error msg typoBrian Paul
2008-04-29gallium: set border colorRoland Scheidegger
2008-04-28gallium: fix incorrect level param in copy_image_data_to_texture()Brian Paul
This fixes a weird conform test failure that depended on something that happened several tests earlier. This took waaaaaay too long to find/fix.
2008-04-28tgsi: make loop structure clearer, use x86_lea for incrementsKeith Whitwell
2008-04-28tsgi: add a makefileKeith Whitwell
2008-04-28translate: squash warningsKeith Whitwell
2008-04-28pb: remove unused variable, squash warningKeith Whitwell
2008-04-28gallium: Set SSE_SWIZZLES to 0 by default.Michal Krol
2008-04-28gallium: Generate SSE code to swizzle and unswizzle vs inputs and outputs.Michal Krol
Change SSE_SWIZZLES #define to 0 to disable it.
2008-04-28gallium: check for PIPE_FORMAT_X8Z24_UNORM formatBrian Paul
2008-04-28gallium: replace some code with a call to st_choose_format()Brian Paul
2008-04-28gallium: return enum pipe_format, not uint, for a few functionsBrian Paul
2008-04-28gallium: add cases for PIPE_FORMAT_X8Z24_UNORMBrian Paul
2008-04-27pipebuffer: Be extra cautious with the incoming buffers.José Fonseca
A common mistake is trying to fence user or malloc buffers. So don't let the crash happen inside pipebuffer lib.
2008-04-27rtasm: Implement x86_retw.José Fonseca
2008-04-25gallium: fix broken SGT, SLEBrian
2008-04-25use PIPE_ARCH_X86Brian
2008-04-25gallium: tweak comments, minor var renamingBrian Paul
2008-04-25gallium: tweak comments, minor var renamingBrian Paul
2008-04-25gallium: remove unneeded st->bitmap_texcoord_biasBrian Paul
2008-04-25gallium: use simple color pass-through fragment shader if textures don't existBrian Paul
If we run out of texture memory we may not have the texture needed by the fragment shader. If this happens, plug in a color passthrough shader. So instead of crashing, we just don't see the texture. GL_OUT_OF_MEMORY is raised, of course.
2008-04-25gallium: added null ptr checkBrian Paul
2008-04-25gallium: added a null ptr checkBrian Paul
2008-04-25gallium: fix typo s/_mesa_unmap_drapix_pbo/_mesa_unmap_drawpix_pbo/Brian Paul
2008-04-25gallium: consolidate quad drawing codeBrian Paul
2008-04-25gallium: remove unused st_draw_vertices()Brian Paul
2008-04-25gallium: use util_draw_vertex_buffer() instead of st_draw_vertices()Brian Paul
2008-04-25gallium: fix the compressed texture hack in st_texture_image_copy()Brian Paul
Actually, the hack is still there and needs to be revisited, but I get a bit further with compressed textures now.
2008-04-26scons: A few fixes for building mesa on windows.José Fonseca