Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-03 | gallium: test if PIPE_FORMAT_YCBCR[_REV] is supported and enable ↵ | Brian | |
GL_MESA_ycbcr_texture Update texture format selection code too. | |||
2008-04-03 | gallium: set rasterizer.gl_rasterization_rules = 1 in a few more places | Brian | |
2008-04-03 | gallium: streamline viewport/raster/shader state for clearing with quads | Brian Paul | |
Move init of these items to new st_init_clear(). | |||
2008-04-03 | gallium: include st_cb_bitmap.h to silence warning | Brian Paul | |
2008-04-03 | gallium: remove the temporary/test TEST_DRAW_PASSTHROUGH code | Brian Paul | |
2008-04-03 | gallium: use identity viewport fix broken clear_with_quad() path | Brian Paul | |
Since bypass_clipping is set and we're specifying quad vertexes in window coords, setup identity viewport. | |||
2008-04-03 | gallium: call st_flush_bitmap_cache() | Brian Paul | |
2008-04-03 | gallium: set gl_rasterization_rules | Brian Paul | |
2008-04-02 | gallium: add a flag to turn on gl rasterization rules | Keith Whitwell | |
Use this to set up hardware rasterization (if your hardware can do it) or otherwise turn on various tweaks in the draw module. Currently only hooked up to point biasing code. | |||
2008-04-02 | gallium: add temporary facility for rasterization-time clamping of point sizes | Keith Whitwell | |
2008-04-01 | gallium: init ctx->Const.MaxTextureUnits | Brian | |
2008-04-01 | handle IsPositionInvariant flag | Ben Skeggs | |
2008-04-01 | gallium: Fencing fix. | Michel Dänzer | |
Make sure the struct pipe_fence_handle* we point st_flush() to is initialized to NULL, so winsys->fence_reference() doesn't try to unreference a random struct pipe_fence_handle* pointer. | |||
2008-03-31 | gallium: used inverted bitmap texture to simplify the fragment shader. | Brian | |
"Off" bits get stored as texel=0xff and "on" bits get stored as texel=0x0. Then use KIL -tmp to kill the off bits and keep the on bits. This shortens the fragment program by two instructions. | |||
2008-03-31 | gallium: use cso_save/restore_sampler_textures() functions | Brian | |
2008-03-31 | gallium: set the bypass_vs flag now | Brian | |
The glBitmap vertex shader is a no-op, but we still have to specify it in order to convey the number of inputs/outputs. | |||
2008-03-31 | gallium: turn on clipping for bitmaps | Brian | |
Bitmaps can extend beyond window edges so we need to clip. Also, move some state atom vars to st_context to be a bit more efficient. | |||
2008-03-29 | gallium: Set vertex state/buffers en-mass. | Brian Paul | |
2008-03-28 | gallium: begin some bounding box code for bitmap cache | Brian | |
2008-03-28 | gallium: added an (int) cast in setup_bitmap_vertex_data() to fix a ↵ | Brian | |
signed/unsigned arithmetic problem Negative values became very large uints. | |||
2008-03-28 | gallium: don't call st_flush_bitmap_cache() if the only change is ↵ | Brian | |
_NEW_PACKUNPACK state | |||
2008-03-28 | gallium: disable a debug hack | Brian | |
2008-03-28 | gallium: implement a glBitmap cache | Brian | |
The bitmap cache attempts to accumulate a series of glBitmap calls in a buffer to effectively render a whole bunch of bitmaps at once. The cache can be disabled, if needed, by setting UseBitmapCache=GL_FALSE. | |||
2008-03-28 | gallium: re-work texture format selection code | Brian Paul | |
Use same code for choosing texture format and renderbuffer format. | |||
2008-03-28 | gallium: remove redundant compare bit in sampler state | Roland Scheidegger | |
2008-03-27 | gallium: replace PIPE_ATTRIB_MAX with PIPE_MAX_ATTRIBS | Brian | |
The later follows the naming scheme of other limits. Keep the old definition until all possible usage is updated. | |||
2008-03-27 | gallium: Update calls to the simple shader functions | Brian | |
2008-03-27 | gallium: fix Element() macro redefinition warning | Brian | |
2008-03-26 | gallium: need to call st_validate_state() in Bitmap() | Brian Paul | |
2008-03-26 | gallium: Change pipe->flush() interface to optionally return a fence. | Michel Dänzer | |
The cell driver still uses an internal CELL_FLUSH_WAIT flag, in the long run proper fencing should be implemented for it. | |||
2008-03-25 | gallium: disable the selection/feedback draw module's options for wide ↵ | Brian Paul | |
lines, points, etc. Disable paths that would convert points/lines to tris as that upsets selection, feedback, rastpos. | |||
2008-03-25 | gallium: added some debug code (disable) | Brian Paul | |
2008-03-24 | gallium: don't enable stencil test if no stencil buffer. | Brian Paul | |
Also, if not doing two-sided stencil, set back-face state = front-face state. | |||
2008-03-24 | gallium: save/restore samplers in draw_textured_quad() | Brian | |
2008-03-24 | gallium: fix a few texture border/mipmap glitches found w/ conform | Brian Paul | |
2008-03-24 | gallium: check SamplersUsed to determine if texture needed, as in ↵ | Brian Paul | |
st_atom_sampler.c Otherwise, we were sometimes setting texture state but not the corresponding sampler state. | |||
2008-03-24 | gallium: free bitmap fragment shaders, misc clean-up | Brian Paul | |
2008-03-24 | gallium: add missing cso_save_samplers() call | Brian Paul | |
2008-03-24 | gallium: pass the filter mode to util_gen_mipmap(). | Brian | |
Remove util_gen_mipmap_filter() when no longer used. | |||
2008-03-22 | gallium: fix a few more shader-related mem leaks | Brian | |
2008-03-22 | gallium: fix a few mem leaks when deleting programs | Brian | |
2008-03-21 | gallium: fix const buffer update bug | Brian | |
If only glUniform is called between two renderings, the const buffers weren't getting updated. Need to set the _NEW_PROGRAM flag in st_upload_constants() as that's the dirty flag set by glUniform. Fixes glean tapi2 test. | |||
2008-03-21 | Refactor PBO validate/map code. | Brian | |
We always need to do PBO validation, so do that in core Mesa before calling driv er routine. cherry-picked from Mesa/master. | |||
2008-03-21 | gallium: implement PBO operations for glDraw/ReadPixels and glBitmap | Brian Paul | |
At this time there are no optimizations for directly blitting between buffer objects and surfaces (always go through mappings). glean pbo test passes now | |||
2008-03-21 | gallium: use is_format_supported(PIPE_FORMAT_DXT5_RGBA) to check if s3tc is ↵ | Brian Paul | |
supported The PIPE_CAP_S3TC token will be deprecated. | |||
2008-03-21 | gallium: use is_format_supported() to determine if GL_EXT_texture_sRGB is ↵ | Brian Paul | |
supported | |||
2008-03-20 | gallium: catch some out of memory conditions in the texture image code. | Brian Paul | |
st_finalize_texture()'s return code now indicates success/fail instead of presence of texture border (which we discard earlier). | |||
2008-03-20 | gallium: assign framebuffer width, height | Brian | |
2008-03-20 | gallium: unused var silence warning | Brian | |
2008-03-20 | gallium: glBitmap code now separe from glDraw/CopyPixels code | Brian | |
Also, glBitmap now re-uses the vertex buffer to avoid frequent allocations/ deallocations. And, use u_simple_shaders utility code. |