Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-14 | mesa: Fix gcc assembly enable logic. | José Fonseca | |
The i386 symbol is defined on WINDDK. | |||
2009-04-10 | gallium: remove pipe_texture::compressed field | Brian Paul | |
The format field encodes compressed vs. uncompressed already. We can easily check if a texture is compressed with pf_is_compressed(texture->format). | |||
2009-04-09 | st: remove another unneeded 'is compressed' comparison | Brian Paul | |
2009-04-09 | st: remove unneeded "is compressed" check | Brian Paul | |
The format indicates compressed vs. uncompressed. | |||
2009-04-09 | st: rearrange some code to be a little more clear | Brian Paul | |
2009-04-09 | gallium: remove unneeded compressed=0 assignment | Brian Paul | |
2009-04-09 | st: remove comp_byte parameter to st_texture_create() | Brian Paul | |
We can determine if the texture is compressed by checking the format. | |||
2009-04-09 | st: consolidate format->usage computation | Brian Paul | |
2009-04-09 | st: add const qualifiers, use GL types | Brian Paul | |
2009-04-09 | st: make loops over 3D texture slices a litte more intuitive | Brian Paul | |
2009-04-09 | st: reformatting and clean-ups in texture code | Brian Paul | |
2009-04-08 | gallium: when using gl_PointCoord ensure we use the correct attribute. | Alan Hourihane | |
2009-04-07 | st: implement glCopyTexImage() for GL_DEPTH24_STENCIL8 internal format | Brian Paul | |
2009-04-07 | st: implement GL_DEPTH_STENCIL format for glReadPixels and DrawPixels() | Brian Paul | |
2009-04-06 | st: as with swrast, interpret texture border color according to texture format | Brian Paul | |
Depending on the hardware driver this might not be needed, but it will cause no harm. | |||
2009-04-06 | st: rename a helper function | Brian Paul | |
2009-04-06 | mesa: Fix orientation adjustment for reading stencil pixels. | José Fonseca | |
Fixes conform spcorner.c & spclear.c failure. | |||
2009-04-04 | gallium: Clean up driver clear() interface. | Michel Dänzer | |
Only allows clearing currently bound buffers, but colour and depth/stencil in a single call. | |||
2009-04-04 | gallium: Add utility helper for packing combined depth/stencil values. | Michel Dänzer | |
2009-04-03 | mesa: move glGetTexImage(), glGetCompresssedTexImage() code into new file | Brian Paul | |
2009-04-03 | mesa: remove the noClamp parameter to _mesa_pack_rgba_span_float() | Brian Paul | |
It was only set to GL_TRUE in one place where it isn't really needed (glGetTexImage(sRGB format)). | |||
2009-04-03 | mesa: ensure pbo stencil buffers are mapped before use | Alan Hourihane | |
2009-03-31 | gallium: Move pf_is_depth_stencil to p_format.h. | José Fonseca | |
2009-03-28 | mesa: add new signed rgba texture format | Roland Scheidegger | |
This is a (partial) backport of the signed texture format support in OGL 3.1. Since it wasn't promoted from an existing extension roll our own. | |||
2009-03-27 | mesa: Support Z24S8 wherever S8Z24 is supported. | José Fonseca | |
2009-03-26 | st: init the default texture to (0,0,0,1) | Brian Paul | |
The default texture is used when a sampler uses an incomplete texture. This change fixes the piglit fp-incomplete test. | |||
2009-03-26 | gallium: Remove some little-used fields from struct pipe_surface. | Michel Dänzer | |
2009-03-24 | mesa/st: bump gallium version to 0.3 | Keith Whitwell | |
To distinguish from the -0.2 version still being maintained on the gallium-mesa-7.4 branch. There are already greater interface changes between these two branches than there were between -0.2 and -0.1. Also stop injecting Tungsten into the vendor string - the Gallium in the renderer string should be sufficient. | |||
2009-03-23 | gallium: Remove remnants of reference counting internals outside of p_refcnt.h. | Michel Dänzer | |
2009-03-21 | gallium: remove remaining references to origin_lower_left | Keith Whitwell | |
2009-03-21 | st: Silence compiler warnings. | Michal Krol | |
2009-03-20 | gallium: remove use of origin_lower_left | Brian Paul | |
This was used to indicate OpenGL's lower-left origin for fragment window coordinates for polygon stipple and gl_FragCoord. Now: - fragment coordinate origin is always upper-left corner - GL polygon stipple is inverted and shifted before given to gallium - GL fragment programs that use INPUT[WPOS] are modified to use an inverted window coord which is placed in a temp register. Note: the origin_lower_left field still exists in pipe_rasterizer_state. Remove it when all the drivers, etc. no longer reference it. | |||
2009-03-19 | mesa: check renderbuffer is defined before use. | Alan Hourihane | |
2009-03-19 | st/gl: Only transfer needed parts in st_TexSubimage | Jakob Bornecrantz | |
2009-03-18 | st: call _glapi_check_multithread from st_make_current | Keith Whitwell | |
This function is called from many OS-dependent versions of MakeCurrent. Move the check for multithreading to this central location to avoid having to make this check from all the callers. | |||
2009-03-18 | st: need to free/realloc pipe texture when we're handed image level > last_level | Brian Paul | |
Fixes progs/tests/tri-fbo-tex-mip.c | |||
2009-03-18 | st: clean up some if-statment code | Brian Paul | |
2009-03-18 | st: update texture comments | Brian Paul | |
2009-03-16 | gallium: Use struct pipe_atomic for pipe refcounts. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-03-13 | gallium: consolidate bypass_vs and bypass_clipping flags | Keith Whitwell | |
The draw module provides a similar interface to the driver which is retained as various bits of hardware may be able to take on incremental parts of the vertex pipeline. However, there's no need to advertise all this complexity to the state tracker. There are basically two modes now - normal and passthrough/screen-coords. | |||
2009-03-13 | gallium: no need to keep a copy of shader tokens in state tracker | Keith Whitwell | |
Any driver who needs a copy of the shader tokens must organize to do so itself. This has been the case for a long time, but there was still defensive code in the state tracker, which is now removed. Any bugs resulting from this need to be fixed in the offending driver... | |||
2009-03-13 | mesa/st: add check for null front renderbuffer | Keith Whitwell | |
Not sure if this indicates a problem elsewhere, but without this check trivial/tri-fbo.c segfaults on resize. With the patch, it renders correctly. | |||
2009-03-13 | mesa/st: don't call finish in st_glFlush() | Keith Whitwell | |
It is not the state tracker's responsibilty to inject sleeps and pessimize performance in the hope of avoiding buffer synchronization issues in buggy drivers. Calling finish() here will just hide problems that need to be fixed elsewhere. | |||
2009-03-13 | gallium: Remove do_flip argument from surface_copy | Jakob Bornecrantz | |
I should have gotten most uses and implementation correctly fixed, but things might break. Feel free to blame me. | |||
2009-03-09 | st: silence warning | Brian Paul | |
2009-03-09 | st: remove unused DrawPixels code | Brian Paul | |
2009-03-09 | st: use pointer_to_offset() cast wrapper to convert pointers to uint | Brian Paul | |
Silences warnings with 64-bit builds. See comments for details. | |||
2009-03-09 | st: also check for a8 texture support in bitmap code | Keith Whitwell | |
2009-03-07 | gallium: use unsigned long to silence warnings with 64-bit build | Brian Paul | |
2009-03-07 | mesa: move glViewport and glDepthRange functions into new viewport.c file | Brian Paul | |
A bit of refactoring with an eye toward ES2 and GL 3.1 |