Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-03-23 | gallium: Remove the debug_mask_* stuff. | José Fonseca | |
Overcomplex and not much different from using a global variable... | |||
2008-03-23 | gallium: Memory debugging utilities. | José Fonseca | |
There are no known tools for windows kernel memory debugging, so this is a simple set of malloc etc wrappers. Enabled by default on win32 debug builds | |||
2008-03-21 | gallium: added DXT formats (preliminary, will probably change) | Brian Paul | |
2008-03-21 | gallium: document is_format_supported()'s type param | Brian Paul | |
2008-03-21 | gallium: PIPE_FORMAT_TYPE_ comments | Brian Paul | |
2008-03-21 | gallium: added sRGB formats | Brian Paul | |
2008-03-21 | gallium: additional comments, fix typos, etc | Brian Paul | |
2008-03-20 | gallium: added width, height to pipe_framebuffer_state | Brian | |
2008-03-20 | gallium: add debug facility to dump random blobs as hex | Keith Whitwell | |
2008-03-19 | gallium: add face, dirtyLevels params to pipe->texture_update() | Brian Paul | |
This provides better information about which images in texture object have changed. Also, call texture_update() from more places previously missed. | |||
2008-03-19 | gallium: Add generic enum and flags dumping utility functions. | José Fonseca | |
2008-03-18 | gallium: make REALLOC a bit more like realloc | Keith Whitwell | |
2008-03-18 | gallium: Convenience debug_warning function. | José Fonseca | |
2008-03-13 | gallium: added bypass_vs flag to rasterizer state (may be temporary) | Brian | |
2008-03-13 | gallium: remove dead code related to shader semantic input/output info | Brian Paul | |
2008-03-13 | gallium: remove semantic info from pipe_shader_state | Brian Paul | |
Brian's patch to clean up the shader interfaces. | |||
2008-03-13 | tgsi: Drop pre-ps_2_0 opcodes. | Michal Krol | |
2008-03-13 | tgsi: Remove OPCODE_TEXCOORD, OPCODE_TEXCRD aliases. | Michal Krol | |
2008-03-13 | gallium: Standardize most important error codes. | José Fonseca | |
2008-03-13 | gallium: Fix debug_mask_vprintf's example. | José Fonseca | |
2008-03-12 | tgsi: Remove ExtDivide field from existence. Implement OPCODE_TXP. | Michal Krol | |
2008-03-12 | tgsi: Introduce OPCODE_TXP. Depricate ExdDivide field. | Michal Krol | |
2008-03-12 | gallium: Add TEX_FILTER_ANISO img filter | Keith Whitwell | |
Hardware almost universally expects us to set a special filtering mode when anisotropic filtering is enabled, as opposed to varying a max-aniso values. Do this once in the state tracker & simplify the driver code. | |||
2008-03-12 | gallium: Conditional debugging output. | José Fonseca | |
Generalize the conditional debugging output code found trhought the gallium drivers. | |||
2008-03-11 | tgsi: Map OPCODE_TEXKILL to OPCODE_KILP. | Michal Krol | |
2008-03-10 | gallium: WinCE portability fixes. | José Fonseca | |
2008-03-09 | gallium: add some commonly implemented bits of hw state | Keith Whitwell | |
2008-03-08 | gallium: Document debug_printf usage. | José Fonseca | |
2008-03-05 | gallium: michel's patch to rework texture/sampler binding interface | Keith Whitwell | |
Bind all the samplers/textures at once rather than piecemeal. This is easier for drivers to understand. | |||
2008-03-03 | gallium: remove obsolete comment | Keith Whitwell | |
2008-03-03 | gallium: document user_buffer_create a little | Keith Whitwell | |
2008-03-01 | start implementing start of bultins | Zack Rusin | |
2008-02-29 | gallium: remove the ugly pipe->draw stage lookup code in ↵ | Brian | |
aaline/point/pstipple stages Added a void *draw ptr to pipe_context. Probably look for a better solution someday. | |||
2008-02-27 | gallium: remove unneeded pipe ptr from pipe_texture | Brian | |
2008-02-27 | gallium: remove pipe_context->texture_create/release/get_tex_surface() | Brian | |
These functions are now per-screen, not per-context. | |||
2008-02-27 | gallium: move is_format_supported() to pipe_screen struct | Brian | |
2008-02-27 | gallium: start removing pipe_context->get_name/vendor/param/paramf | Brian | |
These are now per-screen functions, not per-context. State tracker updated, code in drivers and p_context.h disabled. | |||
2008-02-27 | gallium: Remove // comments. | José Fonseca | |
2008-02-26 | gallium: introduce 'pipe_screen' for context-independent functions | Brian | |
This will allow creating textures before a rendering context exists, for example. Only implemented in i915 driver for now. i915pipe->texture_create() just dispatches through to the i915screen->texture_create() to avoid state tracker changes for now. | |||
2008-02-26 | gallium: remove pipe parameter from pipe_texture_reference() | Brian | |
Added pipe field to pipe_texture (temporary, see comments). First step toward context-less texture creation... | |||
2008-02-26 | gallium: remove input_map[] from pipe_shader_state | Brian | |
2008-02-25 | Make the pipe headers C++ friendly. | José Fonseca | |
2008-02-23 | gallium: added TGSI_FILE_COUNT | Brian | |
2008-02-23 | Bring in several forgotten MSVC fixes. | José Fonseca | |
2008-02-23 | gallium: Define intptr_t for Windows platform. | Michal Krol | |
2008-02-23 | gallium: Move align_pointer() to p_pointer.h. | Michal Krol | |
2008-02-23 | gallium: New file. | Michal Krol | |
2008-02-21 | gallium: comments, white-space clean-up | Brian | |
2008-02-21 | [PATCH] gallium: include p_compiler.h for boolean defn | Keith Whitwell | |
2008-02-20 | gallium: new pipe->texture_update() function | Brian | |
Called whenever texture data is changed (glTexImage, glTexSubImage, glCopyTexSubImage, etc). |