summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'gallium-polygon-stipple'Brian Paul2011-07-213-20/+64
|\
| * util: assorted updates to polygon stipple helperBrian Paul2011-07-211-10/+33
| |
| * tgsi: add info fields for fragcoord origin, center, etcBrian Paul2011-07-212-10/+31
| |
* | u_vbuf_mgr: restore buffer offsetsChia-I Wu2011-07-211-0/+10
| | | | | | | | | | | | | | u_vbuf_upload_buffers modifies the buffer offsets. If they are not restored, and any of the vertex formats is not supported natively, the next u_vbuf_mgr_draw_begin call will translate the vertex buffers with incorrect buffer offsets.
* | g3dvl: remove unused vertex shader inputsMarek Olšák2011-07-202-4/+4
| | | | | | | | See also comments in the code.
* | g3dvl: Preserve previously rendered components for MC output.Younes Manton2011-07-201-4/+4
| | | | | | | | Fixes xvmc-softpipe MC entrypoint, amongst others.
* | g3dvl: Init/clean pipe fully when a shader-based decoder isn't used.Younes Manton2011-07-202-0/+26
| | | | | | | | Fixes VDPAU CSC-only mode.
* | llvmpipe: fix build with LLVM 3.0svnTobias Droste2011-07-191-13/+35
| | | | | | | | | | | | | | | | | | LLVM 3.0svn introduced a new type system. It defines a new way to create named structs and removes the (now not needed) LLVMInvalidateStructLayout function. See revision 134829 of LLVM. Signed-off-by: Tobias Droste <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* | gallivm: Rename createAsmInfo to createMCAsmInfo with llvm-3.0.Vinson Lee2011-07-161-0/+4
| | | | | | | | | | llvm-3.0svn r135219 renamed createAsmInfo to createMCAsmInfo in include/llvm/Target/TargetRegistry.h.
* | g3dvl: no need for flushing inside the compositor any moreChristian König2011-07-152-6/+2
| | | | | | | | Move that also inside the state tracker where needed.
* | g3dvl: correctly distinct dst area and clip area in the compositorChristian König2011-07-152-10/+19
| | | | | | | | Otherwise xine won't scale correctly.
* | g3dvl: change picture parameter of decode_bitstream to general versionChristian König2011-07-151-3/+5
| | | | | | | | Using pipe_mpeg12_picture_desc was unintentional here.
* | gallium: put video-related enums in separate headerBrian Paul2011-07-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | The forward references to video enum types in p_context.h causes a massive number of compiler warnings (ISO C forbids forward references to ‘enum’ types). By putting the new video enums in a separate header that can be included by p_context.h and p_screen.h we can avoid this. Acked-by Christian König <[email protected]>
* | g3dvl: Remove non-constant expression array initializers.Vinson Lee2011-07-132-7/+31
| | | | | | | | The array initializer must be a constant expression in MSVC.
* | g3dvl: Remove designated initializers.Vinson Lee2011-07-131-4/+4
| | | | | | | | MSVC does not support designated initializers.
* | g3dvl: s/inline/INLINE/Vinson Lee2011-07-133-36/+40
| | | | | | | | The inline keyword is not available in MSVC C.
* | utils: Add missing parenthesesEmil Velikov2011-07-131-0/+4
| | | | | | | | | | Signed-off-by: Emil Velikov <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* | [g3dvl] don't upload all quant buffer layers at onceChristian König2011-07-133-21/+14
| | | | | | | | | | | | | | There seems to be a bug in r600g when uploading more than one layer of a 3D resource at once with a hardware blit. So just do them one at a time to workaround this.
* | Merge branch 'pipe-video'Christian König2011-07-1329-14/+8272
|\ \
| * | [g3dvl] implement workaround for missing blender clamp controlChristian König2011-07-132-7/+35
| | | | | | | | | | | | It's about 20% slower, but should at least work with every hardware.
| * | [g3dvl] keep a pointer in idct buffer to idct objectChristian König2011-07-133-20/+26
| | | | | | | | | | | | So we always know to which idct object a buffer belongs
| * | [g3dvl] add some more PIPE_VIDEO_CAPsChristian König2011-07-124-0/+34
| | |
| * | [g3dvl] fix a whole bunch of memory leaksChristian König2011-07-113-4/+11
| | |
| * | [g3dvl] sync SConscript with MakefileChristian König2011-07-111-3/+9
| | |
| * | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-07-116-11/+153
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/drivers/r600/r600_pipe.c src/gallium/drivers/r600/r600_state_inlines.h
| * | | [g3dvl] and finally remove pipe_video_contextChristian König2011-07-087-122/+93
| | | |
| * | | [g3dvl] move video buffer creation out of video contextChristian König2011-07-084-79/+91
| | | |
| * | | [g3dvl] move compositor creation and handling directly into the state trackersChristian König2011-07-083-83/+130
| | | |
| * | | [g3dvl] remove sampler view handling from video contextChristian König2011-07-081-86/+0
| | | |
| * | | [g3dvl] remove create_surface from video contextChristian König2011-07-081-13/+0
| | | |
| * | | [g3dvl] make pipe_context mandatory for creation pipe_video_contextChristian König2011-07-081-2/+0
| | | |
| * | | [g3dvl] rename is_format_supported to is_video_format_supported and move it ↵Christian König2011-07-083-31/+35
| | | | | | | | | | | | | | | | into screen object
| * | | [g3dvl] rename get_param to get_video_param and move into screen objectChristian König2011-07-072-23/+17
| | | |
| * | | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-07-0418-120/+151
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac src/gallium/drivers/r600/r600_state_inlines.h src/gallium/tests/trivial/Makefile src/gallium/winsys/g3dvl/dri/XF86dri.c src/gallium/winsys/g3dvl/dri/driclient.c src/gallium/winsys/g3dvl/dri/driclient.h src/gallium/winsys/g3dvl/dri/xf86dri.h src/gallium/winsys/g3dvl/dri/xf86dristr.h src/gallium/winsys/r600/drm/r600_bo.c
| * \ \ \ Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-06-0915-72/+161
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/tests/unit/u_format_test.c src/gallium/winsys/r600/drm/r600_hw_context.c
| * | | | | [g3dvl] rework video buffer format handlingChristian König2011-06-073-30/+53
| | | | | |
| * | | | | [g3dvl] move dummy quantification into xvmc state trackerChristian König2011-06-071-15/+3
| | | | | |
| * | | | | [g3dvl] split quant matrix out of picture infoChristian König2011-06-051-7/+14
| | | | | |
| * | | | | [g3dvl] rename map/unmap to begin/end frameChristian König2011-06-051-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mapping and unmapping of buffers is just an implementation detail. begining and ending an frame is much more descriptive
| * | | | | [g3dvl] remove unused and dublicate fields from picture structureChristian König2011-06-051-3/+3
| | | | | |
| * | | | | [g3dvl] use a vertex element instead of the instance idChristian König2011-06-051-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | Enable this change permanently
| * | | | | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-06-055-136/+53
| |\ \ \ \ \
| * | | | | | [g3dvl] use a vertex element instead of the instance idChristian König2011-06-045-21/+85
| | | | | | |
| * | | | | | [g3dvl] respect maximum instruction for idct render targetsChristian König2011-06-011-3/+8
| | | | | | |
| * | | | | | [g3dvl] dynamical adjust blocks per lineChristian König2011-06-011-5/+4
| | | | | | |
| * | | | | | [g3dvl] move quantification into shadersChristian König2011-05-294-112/+168
| | | | | | |
| * | | | | | [g3dvl] implement mismatch control inside idct shadersChristian König2011-05-294-46/+198
| | | | | | |
| * | | | | | [g3dvl] fix resource type for idctChristian König2011-05-291-12/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Only the intermediate resource are 3D textures
| * | | | | | [g3dvl] rework resource format handlingChristian König2011-05-221-131/+88
| | | | | | |
| * | | | | | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-05-213-4/+39
| |\ \ \ \ \ \