summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/g3dvl
AgeCommit message (Collapse)Author
2009-10-23g3dvl: pass display and screen to g3dvl when creating video private contextCooper Yuan
2009-10-01g3dvl: Formatting.Younes Manton
2009-10-01g3dvl: Delete state_trackers/g3dvl, other unused files.Younes Manton
2009-10-01g3dvl: Copyright blocks.Younes Manton
2009-09-27g3dvl: Move XvMC under the Xorg state tracker.Younes Manton
2009-09-27g3dvl: Implement XvMC using pipe_video_context.Younes Manton
2009-09-15st/g3dvl: pass color values to softpipe clear functionCooper Yuan
2009-04-18softpipe: Simplify softpipe_create's prototype.José Fonseca
2009-03-13gallium: Remove do_flip argument from surface_copyJakob Bornecrantz
I should have gotten most uses and implementation correctly fixed, but things might break. Feel free to blame me.
2009-03-04gallium: Unify reference counting.Michel Dänzer
The core reference counting code is centralized in p_refcnt.h. This has some consequences related to struct pipe_buffer: * The screen member of struct pipe_buffer must be initialized, or pipe_buffer_reference() will crash trying to destroy a buffer with reference count 0. u_simple_screen takes care of this, but I may have missed some of the drivers not using it. * Except for rare exceptions deep in winsys code, buffers must always be allocated via pipe_buffer_create() or via screen->*buffer_create() rather than via winsys->*buffer_create().
2009-03-02g3dvl: Grab surface pointer when flushing front buffer in SP winsys.Younes Manton
2009-02-25g3dvl: Update winsys stuff.Younes Manton
2009-02-06g3dvl: Catch up to gallium changes, fix build.Younes Manton
2009-01-24g3dvl: Remove dead links to files that are now in libnouveaudrm.Younes Manton
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-10nouveau: Factor out common winsys bits into libnouveaudrm.aYounes Manton
2009-01-10g3dvl: Use Gallium thread wrappers.Younes Manton
2009-01-10g3dvl: Allocate one set of bufs, let winsys rename them as necessary.Younes Manton
2009-01-10nouveau: Use PIPE_BUFFER_USAGE_CPU_* instead of custom.Younes Manton
2009-01-10nouveau: Put dynamic textures in GART for CPU access and don't swizzle.Younes Manton
Also flag shadows as dynamic since they're for CPU access as well.
2008-11-08Nouveau: build, link and use nv20.Pekka Paalanen
Signed-off-by: Pekka Paalanen <pq@iki.fi>
2008-09-12g3dvl: Use winsys_buffer_reference() instead of pipe_buffer_reference().Younes Manton
Old pipe_buffer_reference() renamed winsys_buffer_reference(), new pipe_buffer_reference() expects a screen.
2008-09-12g3dvl: Update softlinks to nouveau winsys files, related fixes.Younes Manton
2008-09-12g3dvl: Clean up Makefile deps.Younes Manton
2008-08-18g3dvl: Use rotating buffers to avoid waiting for map().Younes Manton
2008-07-26g3dvl: Recursively build dependencies.Younes Manton
Run `make` in src/libXvMC and everything should be built for Nouveau. Run `make DRIVER=softpipe` in src/libXvMC for SoftPipe.
2008-07-23g3dvl: Minor fixes.Younes Manton
2008-07-22g3dvl: Add Nouveau winsys, libdriclient.Younes Manton
Nouveau winsys is based on Mesa's Nouveau winsys and soft-links to most of it. The 'nouveau_context' and 'nouveau_screen' code contains most of the changes, 'nouveau_winsys_pipe', 'nouveau_swapbuffers' and 'nouveau_lock' contain some minor changes. The driclient library contains the DRI userland stuff, most of which was based on Mesa's DRI code.
2008-07-20g3dvl: Fix some memory leaks in the winsys.Younes Manton
2008-07-20g3dvl: Minor SP winsys cleanup.Younes Manton
2008-06-30g3dvl: Use block and stride instead of cpp and pitch.Younes Manton
2008-06-08Initial commit for g3dvl.Younes Manton
Initial commit for g3dvl, contains support for basic XvMC features. - Context, surface, block, macroblock creation and deletion - Surface rendering - Frame pictures - Frame based motion compensation - Intra-coded macroblocks - Predicted macroblocks - Bi-directionally predicted macroblocks - Surface display - Color conversion - Scaling