Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | silence warning | Brian | 2007-12-05 | 1 | -0/+1 |
| | |||||
* | added PIPE_FORMAT_U_B8_G8_R8_A8 case in color_value() | Brian | 2007-12-05 | 1 | -0/+3 |
| | |||||
* | Move dimensions from struct pipe_region to struct pipe_surface. | Michel Dänzer | 2007-11-29 | 5 | -73/+80 |
| | |||||
* | Cleanup PIPE_FORMAT names. | Michal Krol | 2007-11-24 | 1 | -6/+8 |
| | | | | Add a function that builds a display name of a given format token. | ||||
* | gallium: reorg tgsi directories. | Michal Krol | 2007-11-23 | 5 | -7/+10 |
| | |||||
* | The right include was mtypes.h. | José Fonseca | 2007-11-22 | 1 | -1/+1 |
| | |||||
* | Fix build errors. | José Fonseca | 2007-11-22 | 2 | -0/+5 |
| | |||||
* | Replace draw_set_vertex_attributes() with simpler draw_set_vertex_info(). | Brian | 2007-11-21 | 1 | -11/+10 |
| | | | | Just pass in the vertex_info object and make a copy of it. | ||||
* | initial support for PIPE_FORMAT_Z24_S8 | Brian | 2007-11-20 | 3 | -4/+22 |
| | |||||
* | Reimplement glRasterPos using the private 'draw' module. | Brian | 2007-11-16 | 2 | -283/+160 |
| | |||||
* | adjustments so st_feedback_draw_vbo() can be used for glRasterPos | Brian | 2007-11-16 | 1 | -11/+11 |
| | |||||
* | simplify depth_value(), return proper value for Z16 format | Brian | 2007-11-08 | 1 | -13/+7 |
| | |||||
* | new init_renderbuffer_bits() helper | Brian | 2007-11-08 | 1 | -14/+24 |
| | |||||
* | move EXT_shadow_funcs assignment | Brian | 2007-11-08 | 1 | -1/+1 |
| | |||||
* | set sampler state for shadow test | Brian | 2007-11-08 | 1 | -0/+8 |
| | |||||
* | Replace gl_stencil_func_to_sp() and gl_depth_func_to_sp() with ↵ | Brian | 2007-11-08 | 2 | -35/+16 |
| | | | | st_compare_func_to_pipe() | ||||
* | Added pipe->get_paramf() to query float limits. | Brian | 2007-11-08 | 1 | -0/+21 |
| | | | | So far max point size, line width, texture anistopy and lod bias. | ||||
* | Rename struct field 'private' to 'priv'. | Michel Dänzer | 2007-11-08 | 1 | -1/+1 |
| | | | | This broke the LLVM build because 'private' is a C++ keyword. | ||||
* | New PIPE_FLUSH_WAIT flag for pipe->flush(). | Brian | 2007-11-07 | 3 | -9/+6 |
| | | | | | The state tracker doesn't have to directly call winsys->wait_idle() anymore. glFlush and glFinish both go through pipe->flush() now. | ||||
* | Remove context dependencies in winsys layer. | Brian | 2007-11-07 | 1 | -2/+3 |
| | | | | | | The winsys object is now per-screen and shared by multiple contexts. The regionPool is now part of the i915 winsys layer. The winsys wait_idle() and flush_frontbuffer() funcs will get more attention... | ||||
* | enable GL_ARB/NV_point_sprite together | Brian | 2007-11-07 | 1 | -0/+1 |
| | |||||
* | Float->uint conversion for PIPE_FORMAT_U_Z32 resulted in overflow in ↵ | Brian | 2007-11-07 | 1 | -1/+5 |
| | | | | depth_value(). Special-case it. | ||||
* | init glsl functions in st_init_driver_functions() | Brian | 2007-11-07 | 1 | -0/+3 |
| | |||||
* | fix typos, re-enable some extensions to get back to GL 2.1 level | Brian | 2007-11-07 | 1 | -7/+14 |
| | |||||
* | Add winsys->surface_release() to complement winsys->surface_alloc(). | Brian | 2007-11-07 | 1 | -13/+4 |
| | | | | | pipe_surface now has a pointer to the winsys which create/owns the surface. This allows clean surface deallocation w/out a rendering context. | ||||
* | Improved logic for setting up depth/stencil buffers in st_create_framebuffer() | Brian | 2007-11-06 | 1 | -14/+41 |
| | |||||
* | realloc surface if format changes, remove dead code | Brian | 2007-11-06 | 1 | -26/+13 |
| | |||||
* | init luminance/intensity_bits to zero in st_get_format_info() | Brian | 2007-11-06 | 1 | -2/+2 |
| | |||||
* | Handle the corner case of 24bit depth buffer with 0bit stencil buffer. | José Fonseca | 2007-11-06 | 1 | -3/+6 |
| | |||||
* | Remove pipe->max_texture_size(), use get_param() instead. | Brian | 2007-11-06 | 2 | -42/+39 |
| | | | | Also, in st_init_limits(), clamp driver's values against Mesa's internal limits. | ||||
* | Supply buffer usage hints to winsys. | José Fonseca | 2007-11-06 | 4 | -5/+29 |
| | | | | | Winsys driver needs some hints in order to allocate the appropriate kind of memory for the buffer. | ||||
* | Convert format bitfields to shifts and masks. | Michel Dänzer | 2007-11-06 | 1 | -26/+25 |
| | | | | The memory layout of bitfields depends on the ABI. | ||||
* | Determine GL extensions/limits by making pipe queries. | Brian | 2007-11-05 | 3 | -3/+229 |
| | | | | | | The state tracker calls pipe->get_param() to determine the GL limits and which OpenGL extensions are supported. This is an initial implementation that'll probably change... | ||||
* | don't include mtypes.h in st_public.h | Brian | 2007-11-05 | 2 | -4/+4 |
| | |||||
* | move st_invalidate_state() prototype to st_context.h | Brian | 2007-11-05 | 2 | -2/+2 |
| | |||||
* | Remove some temporary state tracker context/framebuffer_create functions. | Brian | 2007-11-05 | 2 | -39/+29 |
| | |||||
* | Update xlib driver to use newer state tracker context/framebuffer functions. | Brian | 2007-11-05 | 4 | -39/+64 |
| | | | | XMesaContext has an st_context * which contains a mesa context. | ||||
* | added st_notify_swapbuffers() | Brian | 2007-11-05 | 2 | -0/+19 |
| | |||||
* | added st_get_framebuffer_surface() and ST_SURFACE_x tokens | Brian | 2007-11-05 | 2 | -0/+30 |
| | |||||
* | comments, tweaks | Brian | 2007-11-05 | 2 | -3/+9 |
| | |||||
* | added st_unreference_framebuffer() | Brian | 2007-11-05 | 2 | -1/+10 |
| | |||||
* | set stfb->Base.Initialized | Brian | 2007-11-05 | 1 | -0/+3 |
| | |||||
* | added st_resize_framebuffer() | Brian | 2007-11-05 | 2 | -0/+17 |
| | |||||
* | st_create_framebuffer() working | Brian | 2007-11-05 | 1 | -30/+17 |
| | |||||
* | move st_create_framebuffer() to new st_framebuffer.c file | Brian | 2007-11-05 | 1 | -10/+0 |
| | |||||
* | new file for st_framebuffer stuff | Brian | 2007-11-05 | 1 | -0/+103 |
| | |||||
* | Introduce st_framebuffer type and st_create_framebuffer(), st_make_current() | Brian | 2007-11-05 | 3 | -0/+41 |
| | |||||
* | added check for fb==NULL | Brian | 2007-11-05 | 1 | -1/+3 |
| | |||||
* | include context.h | Brian | 2007-11-05 | 1 | -0/+1 |
| | |||||
* | call FLUSH_VERTICES() in st_flush() | Brian | 2007-11-05 | 1 | -0/+2 |
| |