summaryrefslogtreecommitdiffstats
path: root/src/gallium/include
Commit message (Collapse)AuthorAgeFilesLines
* gallium: remove pipe_context->texture_create/release/get_tex_surface()Brian2008-02-272-28/+8
| | | | These functions are now per-screen, not per-context.
* gallium: move is_format_supported() to pipe_screen structBrian2008-02-271-18/+1
|
* gallium: start removing pipe_context->get_name/vendor/param/paramfBrian2008-02-271-0/+3
| | | | | These are now per-screen functions, not per-context. State tracker updated, code in drivers and p_context.h disabled.
* gallium: Remove // comments.José Fonseca2008-02-273-8/+8
|
* gallium: introduce 'pipe_screen' for context-independent functionsBrian2008-02-264-1/+113
| | | | | | | 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.
* gallium: remove pipe parameter from pipe_texture_reference()Brian2008-02-262-1/+18
| | | | | Added pipe field to pipe_texture (temporary, see comments). First step toward context-less texture creation...
* gallium: remove input_map[] from pipe_shader_stateBrian2008-02-261-1/+0
|
* Make the pipe headers C++ friendly.José Fonseca2008-02-258-14/+75
|
* gallium: added TGSI_FILE_COUNTBrian2008-02-231-0/+2
|
* Bring in several forgotten MSVC fixes.José Fonseca2008-02-231-0/+8
|
* gallium: Define intptr_t for Windows platform.Michal Krol2008-02-231-1/+3
|
* gallium: Move align_pointer() to p_pointer.h.Michal Krol2008-02-231-27/+1
|
* gallium: New file.Michal Krol2008-02-231-0/+87
|
* gallium: comments, white-space clean-upBrian2008-02-211-23/+30
|
* [PATCH] gallium: include p_compiler.h for boolean defnKeith Whitwell2008-02-211-0/+2
|
* gallium: new pipe->texture_update() functionBrian2008-02-201-0/+8
| | | | | Called whenever texture data is changed (glTexImage, glTexSubImage, glCopyTexSubImage, etc).
* Remove src/mesa and src/mesa/main from gallium source include paths.José Fonseca2008-02-191-32/+295
|
* Merge commit 'origin/gallium-0.1' into gallium-0.1Keith Whitwell2008-02-151-8/+8
| | | | | | | | Conflicts: src/gallium/drivers/softpipe/sp_quad_fs.c src/gallium/drivers/softpipe/sp_state.h src/gallium/drivers/softpipe/sp_state_fs.c
* Code reorganization: move files into their places.José Fonseca2008-02-1511-0/+2976
This is in a separate commit to ensure renames are properly preserved.