summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers
AgeCommit message (Collapse)Author
2009-01-27gallium: standardize api on the prefix "nr"Zack Rusin
2009-01-27gallium: standardize naming of masksZack Rusin
2009-01-23gallium: change the st_get_framebuffer_surface/texture functionsAlan Hourihane
to return TRUE/FALSE if the st_framebuffer is valid, and if it is return the surface/texture in the passed pointer.
2009-01-20gallium: Remove the standalone surfaces.José Fonseca
This commit is mostly just a cosmetic change that cleans-up the interfaces, replacing pipe_winsys::surface_* calls by /** * Allocate storage for a display target surface. * * Often surfaces which are meant to be blitted to the front screen (i.e., * display targets) must be allocated with special characteristics, memory * pools, or obtained directly from the windowing system. * * This callback is invoked by the pipe_screenwhen creating a texture marked * with the PIPE_TEXTURE_USAGE_DISPLAY_TARGET flag to get the underlying * buffer storage. */ struct pipe_buffer *(*surface_buffer_create)(struct pipe_winsys *ws, unsigned width, unsigned height, enum pipe_format format, unsigned usage, unsigned *stride); Most drivers were updated but not all were tested. Use the softpipe pipe driver and the xlib winsys changes as a reference when fixing other drivers.
2009-01-19Merge commit 'origin/gallium-0.2' into gallium-xlib-reworkKeith Whitwell
2009-01-18g3dvl: Some cleanups.Younes Manton
2009-01-18g3dvl: Ref count everywhere.Younes Manton
2009-01-18g3dvl: Mark all buffers for incoming frame data as discardable.Younes Manton
2009-01-18g3dvl: Return BadAlloc if we can't create an XvMC surface.Younes Manton
2009-01-19egl: Fix swap and creation of front bufferJakob Bornecrantz
2009-01-18egl: Add a egl state_tracker that use GalliumJakob Bornecrantz
This works on top Gallium and KMS. The only thing that does not work currently is swap buffers for shown mesa screens. So the only fun thing this will produce is a white screen. The driver wishing to us the state_tracker needs to implement the intrace as define in drm_api.h located in gallium/include/state_tracker. And also have a working KMS implementation.
2009-01-17xlib: don't explicitly create the pipe_winsys structKeith Whitwell
2009-01-13xlib: allow winsys's to register themselves with glx/xlib state trackerKeith Whitwell
2009-01-12dri: make dri_display_surface staticKeith Whitwell
2009-01-12dri: pull dri_swapbuffers.c into dri_drawable.cKeith Whitwell
2009-01-12dri: rename dri1 directoryKeith Whitwell
2009-01-12dri: sketch of new device-independent glx/dri state trackerKeith Whitwell
2009-01-11Merge commit 'origin/gallium-0.2' into gallium-xlib-reworkKeith Whitwell
2009-01-10nouveau: Factor out common winsys bits into libnouveaudrm.aYounes Manton
2009-01-10g3dvl: Use Gallium MALLOC wrappers.Younes Manton
2009-01-10g3dvl: Get rid of old unbuffered motion compensation code.Younes Manton
2009-01-10g3dvl: Map vertex bufs once per frame/flush.Younes Manton
2009-01-10nouveau: Catch some more leaks.Younes Manton
2009-01-10g3dvl: Allocate one set of bufs, let winsys rename them as necessary.Younes Manton
2009-01-10g3dvl: Expand YCbCr to full RGB range by default.Younes Manton
2009-01-10g3dvl: Flag textures holding incoming data as dynamic.Younes Manton
2009-01-09xlib: move state tracker to glx/xlibKeith Whitwell
Also, remove makefile hacks.
2009-01-09xlib: strip out some CI and overlay supportKeith Whitwell
2009-01-09xlib: strip out some overlay supportKeith Whitwell
2009-01-09xlib: strip out glXAllocateMemoryNV & friendsKeith Whitwell
2009-01-09xlib: combine and eliminate some header filesKeith Whitwell
2009-01-09Merge commit 'origin/gallium-0.2' into gallium-xlib-reworkKeith Whitwell
Conflicts: progs/glsl/Makefile
2009-01-08xlib: strip out glXAllocateMemoryMESA & friendsKeith Whitwell
2009-01-08xlib: remove VMS tweaks, these should be moved to p_compiler.h if neededKeith Whitwell
2009-01-08xlib: remove unsued _glxapi_get_extensions funcKeith Whitwell
2009-01-08xlib: strip out some unused XMesa api functionsKeith Whitwell
2009-01-08xlib: rename xfonts.c to fakeglx_fonts.cKeith Whitwell
2009-01-08xlib: rename old_xmesa.h to xm_api.hKeith Whitwell
2009-01-08xlib: remove XMesaMakeCurrent, use XMesaMakeCurrent2 alwaysKeith Whitwell
2009-01-08xlib: remove old xmesa_x.h file and all its definesKeith Whitwell
2009-01-08xlib: remove some XMesa types, just use the native Xlib onesKeith Whitwell
2009-01-08xlib: strip out more 3dfx stuffKeith Whitwell
2009-01-08xlib: pull in private copies of the GL/xmesa*.h headersKeith Whitwell
2009-01-08xlib: strip out FX stuffKeith Whitwell
2009-01-08xlib: remove XFree86Server stuffKeith Whitwell
2009-01-08xlib: remove realglx.[ch]Keith Whitwell
2009-01-08gallium: split driver-independent code out of xlib winsysKeith Whitwell
Place in new xlib state-tracker. This is a statetracker for the GLX API.
2008-12-31python: Pass a zero offset to util_draw_vertex_buffer.José Fonseca
2008-12-12gallium: fixes for srgb, new srgb formatsRoland Scheidegger
add some more srgb texture formats, including compressed ones various fixes relating to srgb formats issues: the util code for generating mipmaps will not handle srgb formats correctly (would need to use a linear->srgb conversion shader)
2008-12-09Merge commit 'origin/gallium-0.1' into gallium-0.2Alan Hourihane