summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* vl: WIP DRI2 support in the winsys.Younes Manton2010-04-286-32/+979
|
* st/xvmc: Mark exported funcs with PUBLIC.Younes Manton2010-04-245-0/+28
|
* vl: Adapt to dri changes.Younes Manton2010-04-247-30/+30
|
* vl: Get rid of pipe_video_surface on the nouveau side as well.Younes Manton2010-04-242-65/+0
|
* vl: Fix up configure.ac/MakefileYounes Manton2010-04-241-1/+1
|
* vl: Do some subpicture validation.Younes Manton2010-04-183-23/+122
|
* vl: Add some query methods to pipe_video_context and use them.Younes Manton2010-03-123-5/+78
|
* vl: Remove pipe_video_surface hooks from pipe_screen as well.Younes Manton2010-03-122-14/+1
|
* vl: Don't wrap blocks in pipe_user_buffers.Younes Manton2010-03-123-16/+14
| | | | | Mallocing/free eat up a noticeable amount of CPU time for no practical benefit.
* vl: Use pipe_surface instead of pipe_texture in interfaces.Younes Manton2010-03-126-76/+62
|
* vl: Get rid of pipe_video_surface.Younes Manton2010-03-1213-224/+46
|
* gallium: Add common video format enums.Younes Manton2010-03-122-13/+19
|
* Merge remote branch 'origin/master' into pipe-videoYounes Manton2010-03-122439-225242/+153529
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac src/gallium/auxiliary/vl/Makefile src/gallium/auxiliary/vl/SConscript src/gallium/auxiliary/vl/vl_compositor.c src/gallium/auxiliary/vl/vl_compositor.h src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.h src/gallium/drivers/nouveau/nouveau_winsys.h src/gallium/drivers/softpipe/sp_video_context.c src/gallium/include/pipe/p_video_state.h src/gallium/include/state_tracker/drm_api.h src/gallium/state_trackers/xorg/xvmc/surface.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.h src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/g3dvl/nouveau/Makefile
| * Revert "mesa: Remove pointless comparison of unsigned integer with a ↵Vinson Lee2010-03-041-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | negative constant." This reverts commit a05fdbcb719ac64e6be842372813f0f4ca2f4f93. Removing the comparison is wrong. The comparison with -1 should be changed to another value (probably PROGRAM_UNDEFINED) along with another change in the shader assembler. Conflicts: src/mesa/shader/prog_execute.c
| * intel: Remove non-kernel-exec-fencing support.Eric Anholt2010-03-0419-638/+94
| | | | | | | | | | | | | | Shaves 60k off the driver from removing the broken spans code. This means we now require 2.6.29, which seems fair given that it's a year old and we've removed support for non-KMS already in the last release of 2D.
| * intel: Remove the unused s8 spans code. Not hit during no_rast piglit.Eric Anholt2010-03-041-59/+1
| | | | | | | | Shaves 5.5k off of the driver.
| * Fix comparison of unsigned value against < 0.Michel Dänzer2010-03-051-1/+1
| |
| * softpipe: minor tweaks to texture filtering codeBrian Paul2010-03-041-9/+5
| |
| * gallivm: implement texture border color, plus tweaks to some wrap modesBrian Paul2010-03-041-23/+129
| | | | | | | | | | | | | | | | | | | | | | The progs/test/texwrap demo looks pretty good, but there are still some tiny differences from softpipe. There may be a sub-pixel texcoord interpolation error somewhere. There's some room for optimization. Many of the wrap modes compute intermediate values that are constant for the texture size (see the min/max values). These could be computed earlier and stored somewhere for later use.
| * gallivm: added texture border_color fieldBrian Paul2010-03-042-0/+10
| |
| * gallivm: added question/commentBrian Paul2010-03-041-0/+1
| |
| * llvmpipe: new commentBrian Paul2010-03-041-0/+4
| |
| * gallivm: commentsBrian Paul2010-03-041-0/+5
| |
| * dri/nouveau: Remove some CI remnants.Francisco Jerez2010-03-046-12/+0
| |
| * dri/nouveau: Trivially add GL_ARB_texture_mirrored_repeat.Andrew Randrianasulu2010-03-041-0/+1
| | | | | | | | Signed-off-by: Francisco Jerez <[email protected]>
| * dri/nouveau: Enable GL_EXT_stencil_wrap.Andrew Randrianasulu2010-03-041-3/+4
| | | | | | | | Signed-off-by: Francisco Jerez <[email protected]>
| * dri/nouveau: Add GL_EXT_stencil_wrap for nv04.Andrew Randrianasulu2010-03-041-0/+4
| | | | | | | | Signed-off-by: Francisco Jerez <[email protected]>
| * dri/nouveau: Fix rb->DataType for z24s8 renderbuffers.Francisco Jerez2010-03-041-1/+1
| |
| * dri/nouveau: Try to keep client buffers smaller than the scratch VBO length.Francisco Jerez2010-03-041-0/+26
| |
| * dri/nouveau: Pack client arrays as they're copied to the real BO.Francisco Jerez2010-03-041-12/+32
| |
| * r300g: Fix indexbuf upper limits.Corbin Simpson2010-03-041-1/+6
| | | | | | | | | | | | | | Wine tends to pessimistically use ~0 for its max index, but r300s only can go up to 2^24-1, causing the kernel checker to freak out. Civ4 is marginally improved now. Still crashes, but not as bad.
| * gallivm: rework and implement more texture wrap modesBrian Paul2010-03-041-60/+448
| | | | | | | | | | | | | | | | | | All the texture wrap modes are now implemented for linear and nearest sampling. However, texture border color is not yet supported so some wrap modes will produce int coords outside the texture bounds. We'll get garbage values insted of the texture border color for now.
| * gallivm: added lp_build_fract()Brian Paul2010-03-042-0/+17
| |
| * gallivm: added lp_build_set_sign()Brian Paul2010-03-042-0/+39
| |
| * gallivm: added lp_build_negate()Brian Paul2010-03-042-0/+12
| |
| * gallivm: clarify unsigned vs. signed integer type constructionBrian Paul2010-03-043-19/+43
| | | | | | | | | | | | The lp_int_type() function was creating an unsigned type. So rename that function to lp_uint_type() and create new lp_int_type() that creates a signed type.
| * i915: Enable texture tiling by default.Eric Anholt2010-03-041-8/+3
| | | | | | | | | | | | | | | | | | This now passes piglit testcases, and shows performance improvements on openarena. Blit-heavy apps may see degradation, but the expectation is that the common case of 3D rendering will see significant wins. This regresses gen-teximage on my 855, and no piglit tests on my 945.
| * i915: Fix up i830 for tiled drawing offsets.Eric Anholt2010-03-042-10/+36
| | | | | | | | Corresponds to b87406e55f029d29594ae76a4b39a4fe1007fe4f.
| * DRI: Put back missing break-statementIan Romanick2010-03-041-0/+1
| | | | | | | | | | | | | | | | The break in the __DRI_ATTRIB_RENDER_TYPE case was accidentally removed in commit 5cf2c5851bcd29c2d53bb04ab692b4b156f5a74d. This puts it back. Signed-off-by: Ian Romanick <[email protected]>
| * Revert "mesa: Fix unsigned comparison."Vinson Lee2010-03-041-1/+1
| | | | | | | | | | | | This reverts commit f9504e75f02586a8561733e0e2711c65efa2979d. This patch is incorrect.
| * glsl: Remove unsigned greater than or equal zero comparison.Vinson Lee2010-03-041-1/+1
| |
| * mesa: Fix unsigned comparison.Vinson Lee2010-03-041-1/+1
| |
| * glsl: Remove unsigned greater than or equal zero comparison.Vinson Lee2010-03-041-1/+1
| |
| * glsl: Return NULL on _slan_gen_asm error path on non-debug builds.Vinson Lee2010-03-041-0/+1
| | | | | | | | | | Exit the function early on the error path, instead of continuing, to prevent a null pointer dereference later on.
| * glsl: Add assert to check input to strcmp.Vinson Lee2010-03-041-0/+1
| |
| * mesa: Add asserts to check inputs to memcpy.Vinson Lee2010-03-041-0/+2
| |
| * r300: make blit code work on swtcl machines.Dave Airlie2010-03-041-5/+18
| | | | | | | | | | | | | | | | Only tested this on my rv530 with R300_NO_TCL=1, but it works there at least. It would be nice to fix the tex_offset by chaning the vertex program on tcl to read from offset 6 but this isn't really necessary. Signed-off-by: Dave Airlie <[email protected]>
| * r300_blit: initialise whole fp structure to 0Dave Airlie2010-03-041-0/+1
| | | | | | | | | | | | | | at least on the r500 we get a lockup unless I do this, the compiler seems to fail to compile and we just get a null fp. Signed-off-by: Dave Airlie <[email protected]>
| * wgl: Fix mingw32 build.Vinson Lee2010-03-031-2/+0
| | | | | | | | This was missed in commit fcf438e9e03f6e75bca4a49ad372fe7c4b1abbf8.
| * Fix unmatched parenthesis introduce by previous commitsIan Romanick2010-03-036-6/+6
| | | | | | | | | | | | | | | | I wasn't careful enough when removing support for GCC versions earlier than 3.3.0. I could have sworn that I compile tested before pushing, but apparently not. FAIL. Signed-off-by: Ian Romanick <[email protected]>