Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-17 | gallium: clean-up/fix msaa override in state tracker | Brian Paul | |
2008-09-16 | gallium: move _vbo_DestroyContext() call | Brian Paul | |
Call it before freeing core Mesa state to avoid references to freed buffer objects. | |||
2008-09-03 | gallium: Have pipe_buffer_* receive a pipe_screen instead of a pipe_context. | José Fonseca | |
We want to use the pipe_buffer_* inlines everywhere, but a pipe context is not always available nor is it needed. | |||
2008-08-19 | gallium: do a proper implementation of GL_OES_read_format | Brian Paul | |
Examine the currently bound color buffer's format to see if there's a good format/type match. | |||
2008-08-19 | mesa: Call pipe->destroy on context destruction for all platforms. | José Fonseca | |
2008-08-14 | gallium: use a default texture in update_textures(), update_samplers() when ↵ | Brian Paul | |
needed The default texture is used when the current fragment shader has texture sample instructions but the user has not provided/bound a texture. | |||
2008-08-12 | gallium: more context clean-up | Brian Paul | |
2008-07-21 | gallium: Temporary workaround for mismatched pipe create and pipe destroy | Jonathan White | |
2008-07-10 | gallium: check for FEATURE_feedback and FEATURE_drawpix when creating/using ↵ | Brian Paul | |
the aux draw module | |||
2008-06-20 | gallium: always need st_init-blit() | Brian Paul | |
2008-06-20 | gallium: assorted FEATURE tests | Brian Paul | |
2008-06-18 | gallium: more FEATURE_x tests | Brian Paul | |
2008-06-18 | gallium: added st_get_proc_address() | Brian Paul | |
2008-06-18 | gallium: added FEATURE_x tests | Brian Paul | |
2008-06-09 | gallium: include scissor.h | Brian Paul | |
2008-05-20 | gallium: move vertex/fragment program unbinding | Brian Paul | |
2008-05-20 | gallium: clean-up glDraw/CopyPixels shaders when destroying context | Brian Paul | |
2008-05-16 | gallium: release textures during context tear-down (fix mem leak) | Brian Paul | |
2008-05-06 | gallium: implement full reference counting for vertex/fragment programs | Brian | |
Use _mesa_reference_vert/fragprog() wherever we assign program pointers. Fixes a memory corruption bug found with glean/api2 test. Another memory bug involving shaders yet to be fixed... | |||
2008-04-30 | gallium: use new buffer wrapper functions in p_inlines.h | Brian Paul | |
This allows us to remove most of the direct references to winsys in the state tracker. | |||
2008-04-24 | gallium: use cso_destroy_vertex/fragment_shader() functions | Brian Paul | |
Also, rearrange the st_destroy_context() code a bit to prevent some invalid/NULL ptr derefs during tear-down. | |||
2008-04-17 | gallium: reorder some of the destroy context code | Brian Paul | |
2008-04-09 | gallium: remove unneeded st->haveFramebufferSurfaces field. | Brian Paul | |
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-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-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-24 | gallium: free bitmap fragment shaders, misc clean-up | Brian Paul | |
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. | |||
2008-03-20 | gallium: use the utility pasthrough shaders | Brian | |
This avoids the Mesa->TGSI translation step. | |||
2008-03-18 | gallium: plug in and init GL_EXT_framebuffer_blit function/extension | Brian | |
2008-03-11 | gallium: rework CSO-related code in state tracker | Brian | |
Use the code in cso_context.c rather than st_cache.c. Basically, binding of state objects now goes through the CSO module. But Vertex/fragment shaders go through pipe->bind_fs/vs_state() since they're not cached by the CSO module at this time. Also, update softpipe driver to handle NULL state objects in various places. This happens during context destruction. May need to update other drivers... | |||
2008-02-15 | Code reorganization: update build. | José Fonseca | |
Update the Makefiles and includes for the new paths. Note that there hasn't been no separation of the Makefiles yet, and make is jumping all over the place. That will be taken care shortly. But for now, make should work. It was tested with linux and linux-dri. Linux-cell and linux-llvm might require some minor tweaks. | |||
2008-02-08 | gallium: initial implemenation of auto mipmap generation in state tracker | Brian | |
Use hardware rendering to compute/render mipmap levels. The fallback path (which will be used for non-renderable texture formats) isn't working yet. | |||
2008-01-25 | gallium: rename pipe_buffer_handle to pipe_buffer, rework pipebuffer/ code | Keith Whitwell | |
Provide an actual definition of the pipe_buffer struct, containing the parameters used to create the buffer, and its refcount. Shift refcounting buffers out of the winsys interface, similar to surfaces & textures. Rework pipebuffer/ to reflect the fact these changes, and also Michel's reworking of the buffer interface. | |||
2008-01-01 | unref const buffers during context destroy | Brian | |
2007-12-19 | Fix problem with initial viewport/scissor size. | Brian | |
If an app never called glViewport, the viewport size was always 0 by 0 pixels. Now pass initial size to st_create_framebuffer() and initialize the viewport and scissor bounds in st_make_current(). This could also be fixed by ensuring the gl_framebuffers passed to _mesa_make_current() were initialized to the right size. But that involves allocating the renderbuffers/pipe_surfaces earlier and that runs into some other issues ATM. Also remove obsolete createRenderbuffers param to st_create_framebuffer(). | |||
2007-12-07 | Move _mesa_init_glsl_driver_functions() into shader_api.c | Brian | |
This allows making a bunch of functions static, and removes a state tracker dependency on driverfuncs.c | |||
2007-12-07 | Eliminate struct pipe_region. | Michel Dänzer | |
Directly use struct pipe_buffer_handle for storage and struct pipe_surface for (un)mapping. | |||
2007-11-07 | init glsl functions in st_init_driver_functions() | Brian | |
2007-11-05 | Determine GL extensions/limits by making pipe queries. | Brian | |
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... | |||
2007-11-05 | Remove some temporary state tracker context/framebuffer_create functions. | Brian | |
2007-11-05 | Update xlib driver to use newer state tracker context/framebuffer functions. | Brian | |
XMesaContext has an st_context * which contains a mesa context. | |||
2007-11-05 | comments, tweaks | Brian | |
2007-11-05 | move st_create_framebuffer() to new st_framebuffer.c file | Brian | |
2007-11-05 | Introduce st_framebuffer type and st_create_framebuffer(), st_make_current() | Brian | |
2007-11-01 | Sketch out new create/destroy context functions which create/wrap a Mesa ↵ | Brian | |
context. | |||
2007-11-01 | remove dead code | Brian | |
2007-11-01 | remove unneeded tnl stuff | Brian | |
2007-10-31 | Lift VBO/tnl stuff up out of drivers | Brian | |
2007-10-31 | plug st_invalidate_state() into ctx->Driver.UpdateState | Brian | |
Start lifting Mesa stuff up out of winsys/driver code. |