mesa.git
13 years agor300/compiler: Handle loops in the register allocator.
Tom Stellard [Wed, 11 Aug 2010 16:24:07 +0000 (09:24 -0700)]
r300/compiler: Handle loops in the register allocator.

13 years agor600g: accept empty frag prog shader
Jerome Glisse [Wed, 11 Aug 2010 18:26:07 +0000 (14:26 -0400)]
r600g: accept empty frag prog shader

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agor600g: add src negation support
Jerome Glisse [Wed, 11 Aug 2010 17:49:06 +0000 (13:49 -0400)]
r600g: add src negation support

Should fix few glBitmap cases.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agogallivm: Fix and enable the extra Newton/Raphson step in lp_build_rcp().
José Fonseca [Wed, 11 Aug 2010 17:44:17 +0000 (18:44 +0100)]
gallivm: Fix and enable the extra Newton/Raphson step in lp_build_rcp().

Thanks to Michal for spotting this.

13 years agor600g: add point/sprite rendering support
Jerome Glisse [Wed, 11 Aug 2010 16:19:33 +0000 (12:19 -0400)]
r600g: add point/sprite rendering support

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agoRevert "translate_generic: return NULL instead of assert(0) if format not supported"
Luca Barbieri [Wed, 11 Aug 2010 14:59:25 +0000 (16:59 +0200)]
Revert "translate_generic: return NULL instead of assert(0) if format not supported"

This reverts commit 16b45ca7cefb3432b4133fe9d0b1dbfe3f286131.

José Fonseca asked for a revert.

Note that the testsuite will now segfault since it attempts to test
all possible formats.

13 years agotranslate_generic: fix broken A8R8G8B8_UNORM output
Luca Barbieri [Wed, 11 Aug 2010 14:00:32 +0000 (16:00 +0200)]
translate_generic: fix broken A8R8G8B8_UNORM output

translate was attempting to output A8R8G8B8_UNORM as if it were
R8G8B8A8_UNORM.

Now the tests just added pass.

13 years agotranslate: add testsuite
Luca Barbieri [Wed, 11 Aug 2010 13:57:37 +0000 (15:57 +0200)]
translate: add testsuite

Currently only checks all possible format conversions, and doesn't
attempt to test whether multiple buffers/elements or indices work.

13 years agotranslate_generic: return NULL instead of assert(0) if format not supported
Luca Barbieri [Wed, 11 Aug 2010 13:59:43 +0000 (15:59 +0200)]
translate_generic: return NULL instead of assert(0) if format not supported

This gives the caller a chance to recover (or crash anyway otherwise).

13 years agoauxiliary: fix util_framebuffer_copy
Luca Barbieri [Fri, 6 Aug 2010 09:08:45 +0000 (11:08 +0200)]
auxiliary: fix util_framebuffer_copy

util_framebuffer_copy was attempting to copy all elements of the
source framebuffer state.

However, this breaks if the user does not zero initialize the structure.
Instead, only copy the elements up to nr_cbufs, and clear elements up
to dst->nr_cbufs, if the destination was larger than the source.

13 years agogallivm: Use lp_build_div instead of lp_build_mul + lp_build_rcp.
José Fonseca [Wed, 11 Aug 2010 14:13:17 +0000 (15:13 +0100)]
gallivm: Use lp_build_div instead of lp_build_mul + lp_build_rcp.

Single divide, so let lp_build_div decide how to implement this.

This will save a multiplication in architectures which don't have
a RCP intrinsic.

13 years agogallivm: Use unsigned shift in lp_build_minify.
José Fonseca [Wed, 11 Aug 2010 14:11:12 +0000 (15:11 +0100)]
gallivm: Use unsigned shift in lp_build_minify.

Texture dimensions are unsigned.

13 years agollvmpipe: Debug code to dump interpolation coefficients.
José Fonseca [Wed, 11 Aug 2010 14:10:28 +0000 (15:10 +0100)]
llvmpipe: Debug code to dump interpolation coefficients.

13 years agollvmpipe: Use single precision divide for one over area computation.
José Fonseca [Wed, 11 Aug 2010 14:09:54 +0000 (15:09 +0100)]
llvmpipe: Use single precision divide for one over area computation.

13 years agoutil: copy the u_staging commit message to the code
Marek Olšák [Wed, 11 Aug 2010 13:11:37 +0000 (15:11 +0200)]
util: copy the u_staging commit message to the code

13 years agoauxiliary: support for transfers using staging resources
Luca Barbieri [Tue, 3 Aug 2010 19:20:53 +0000 (21:20 +0200)]
auxiliary: support for transfers using staging resources

Direct3D 10/11 has no concept of transfers. Applications instead
create resources with a STAGING or DYNAMIC usage, copy between them
and the real resource and use Map to map the STAGING/DYNAMIC resource.

This util module allows to implement Gallium drivers as a Direct3D
driver would be implemented: transfers allocate a resource with
PIPE_USAGE_STAGING, and copy the data between it and the real resource
with resource_copy_region.

13 years agogallium: add ALWAYS_INLINE
Luca Barbieri [Tue, 10 Aug 2010 08:26:14 +0000 (10:26 +0200)]
gallium: add ALWAYS_INLINE

Used when we want to be sure the compiler inlines a large function into
an inner loop.

13 years agou_surfaces: add util_surfaces_peek
Luca Barbieri [Tue, 3 Aug 2010 20:19:30 +0000 (22:19 +0200)]
u_surfaces: add util_surfaces_peek

Used to find out if a surface exists without creating one.

13 years agou_surfaces: use cso_hash instead of util_hash_table
Luca Barbieri [Fri, 6 Aug 2010 07:46:14 +0000 (09:46 +0200)]
u_surfaces: use cso_hash instead of util_hash_table

Using cso_hash directly is the right thing since util_hash_table
adds useless overhead and is harder to use for this application.

13 years agou_surfaces: fix surface leak due to off by one
Luca Barbieri [Fri, 6 Aug 2010 07:53:15 +0000 (09:53 +0200)]
u_surfaces: fix surface leak due to off by one

13 years agoauxiliary: make primitive splitter assert on unimplemented adjacency prims
Luca Barbieri [Wed, 11 Aug 2010 08:54:31 +0000 (10:54 +0200)]
auxiliary: make primitive splitter assert on unimplemented adjacency prims

They are unimplemented, even though the framework makes it possible to
implement them well, and nv50 needs them.

13 years agoauxiliary: fix u_split_prim naming convention
Luca Barbieri [Wed, 11 Aug 2010 08:51:28 +0000 (10:51 +0200)]
auxiliary: fix u_split_prim naming convention

Current practice is to start identifiers with "util_" instead of "u_".

13 years agoauxiliary: move Ben Skeggs' primitive splitter to common code
Luca Barbieri [Wed, 11 Aug 2010 08:46:12 +0000 (10:46 +0200)]
auxiliary: move Ben Skeggs' primitive splitter to common code

This is a simple framework that handles splitting primitives in an
abstract way.

The user has to specify the primitive start, start index and count.

Then, it can ask the primitive splitter to "draw" a chunk of the
primitive, staying under a given vertex/index budget.

The primitive splitter will then call user-supplied functions to
emit a range of vertices/indices, as well as switch the edgeflag
on or off.

This is particularly useful for hardware that either has limits
on the vertex count field, or where vertices are pushed on a FIFO
or temporary buffer of limited size.

Note that unlike other splitters, it does not manipulate data in
any way, and merely asks a callback to do so, in vertex intervals.

13 years agomesa: Include missing header in prog_noise.h.
Vinson Lee [Wed, 11 Aug 2010 08:10:54 +0000 (01:10 -0700)]
mesa: Include missing header in prog_noise.h.

Include glheader.h for GLfloat symbol.

13 years agomesa: Clean up header file inclusion in prog_instruction.h.
Vinson Lee [Wed, 11 Aug 2010 08:05:49 +0000 (01:05 -0700)]
mesa: Clean up header file inclusion in prog_instruction.h.

Remove mfeatures.h.
Include glheader.h for GL symbols.

13 years agomesa: Include missing header in prog_execute.h.
Vinson Lee [Wed, 11 Aug 2010 07:43:28 +0000 (00:43 -0700)]
mesa: Include missing header in prog_execute.h.

Include mtypes.h for GLcontext symbol.

13 years agomesa: Include missing header in prog_cache.h.
Vinson Lee [Wed, 11 Aug 2010 07:35:34 +0000 (00:35 -0700)]
mesa: Include missing header in prog_cache.h.

Include mtypes.h for GLcontext symbol.

13 years agomesa: Include missing header in nvvertparse.h.
Vinson Lee [Wed, 11 Aug 2010 07:33:02 +0000 (00:33 -0700)]
mesa: Include missing header in nvvertparse.h.

Include mtypes.h for GLcontext symbol.

13 years agomesa: Include missing header in nvfragparse.h.
Vinson Lee [Wed, 11 Aug 2010 07:29:26 +0000 (00:29 -0700)]
mesa: Include missing header in nvfragparse.h.

Include mtypes.h for GLcontext symbol.

13 years agomesa: Remove unnecessary header from hash_table.h.
Vinson Lee [Wed, 11 Aug 2010 07:26:05 +0000 (00:26 -0700)]
mesa: Remove unnecessary header from hash_table.h.

13 years agoswrast: fix span color array pointer assignment for 32-bit/channel rendering
M.Froehlich@science-computing.de [Wed, 11 Aug 2010 03:19:46 +0000 (21:19 -0600)]
swrast: fix span color array pointer assignment for 32-bit/channel rendering

See fd.o bug 29487.

NOTE: This is a candidate for the 7.8 branch.

Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agor300g: initialize VAP_VTX_STATE_CNTL
Marek Olšák [Wed, 11 Aug 2010 00:58:50 +0000 (02:58 +0200)]
r300g: initialize VAP_VTX_STATE_CNTL

This got lost during the rasterizer rewrite.

13 years agor300g: implement gl_FrontFacing
Marek Olšák [Tue, 10 Aug 2010 12:21:05 +0000 (14:21 +0200)]
r300g: implement gl_FrontFacing

13 years agoswrast: Remove unnecessary header.
Vinson Lee [Wed, 11 Aug 2010 01:05:52 +0000 (18:05 -0700)]
swrast: Remove unnecessary header.

13 years agosvga: Remove unnecessary headers.
Vinson Lee [Wed, 11 Aug 2010 00:53:08 +0000 (17:53 -0700)]
svga: Remove unnecessary headers.

13 years agor300g: Remove unnecessary header.
Vinson Lee [Wed, 11 Aug 2010 00:39:13 +0000 (17:39 -0700)]
r300g: Remove unnecessary header.

13 years agoglut: also check for GLX_ARB_multisample
Nigel Stewart [Tue, 10 Aug 2010 23:27:37 +0000 (17:27 -0600)]
glut: also check for GLX_ARB_multisample

Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agomesa: use switch stmt in init_program_limits()
Brian Paul [Tue, 10 Aug 2010 15:14:22 +0000 (09:14 -0600)]
mesa: use switch stmt in init_program_limits()

13 years agomesa: remove obsolete comments
Brian Paul [Tue, 10 Aug 2010 15:10:30 +0000 (09:10 -0600)]
mesa: remove obsolete comments

13 years agor300/compiler: Use predicate bit for IF statements in r500 vertex shaders
Tom Stellard [Sun, 8 Aug 2010 19:53:29 +0000 (12:53 -0700)]
r300/compiler: Use predicate bit for IF statements in r500 vertex shaders

13 years agor300/compiler: Implement hardware assisted loops for vertex shaders.
Tom Stellard [Thu, 5 Aug 2010 17:19:00 +0000 (10:19 -0700)]
r300/compiler: Implement hardware assisted loops for vertex shaders.

Single loops work, but nested loops do not.

13 years agor300/compiler: Correctly transform nested loops.
Tom Stellard [Fri, 6 Aug 2010 04:03:55 +0000 (21:03 -0700)]
r300/compiler: Correctly transform nested loops.

13 years agor600g: avoid reemiting literal, avoid scheduling empty cs
Jerome Glisse [Tue, 10 Aug 2010 15:52:00 +0000 (11:52 -0400)]
r600g: avoid reemiting literal, avoid scheduling empty cs

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agoutil: Add util_format_srgb().
José Fonseca [Tue, 10 Aug 2010 15:32:29 +0000 (16:32 +0100)]
util: Add util_format_srgb().

To convert RGB -> SRGB format.

13 years agogallivm: fix non-SSE4.1 case in lp_build_pack2()
Brian Paul [Tue, 10 Aug 2010 14:56:20 +0000 (08:56 -0600)]
gallivm: fix non-SSE4.1 case in lp_build_pack2()

Since there's no SSE instruction for this case, fall through to the
generic shuffle code.

Fixes bug fd.o 29468.

13 years agomesa: additional program limit assertions
Brian Paul [Tue, 10 Aug 2010 14:38:12 +0000 (08:38 -0600)]
mesa: additional program limit assertions

13 years agomesa: fix comment typo
Brian Paul [Tue, 10 Aug 2010 14:35:47 +0000 (08:35 -0600)]
mesa: fix comment typo

13 years agogallivm: Fix bitwise operations for floats, division for integers
nobled [Mon, 9 Aug 2010 21:25:18 +0000 (21:25 +0000)]
gallivm: Fix bitwise operations for floats, division for integers

http://bugs.freedesktop.org/29407

Signed-off-by: José Fonseca <jfonseca@vmware.com>
13 years agogallivm: Even more type checking
nobled [Mon, 9 Aug 2010 21:15:08 +0000 (21:15 +0000)]
gallivm: Even more type checking

http://bugs.freedesktop.org/29407

Signed-off-by: José Fonseca <jfonseca@vmware.com>
13 years agollvmpipe: Always use floating-point operators for floating-point types
nobled [Fri, 6 Aug 2010 17:32:29 +0000 (17:32 +0000)]
llvmpipe: Always use floating-point operators for floating-point types

See:
http://bugs.freedesktop.org/29404
http://bugs.freedesktop.org/29407

Signed-off-by: José Fonseca <jfonseca@vmware.com>
13 years agoradeon: Use MESA_FORMAT_SARGB8 for sRGB formats
Henri Verbeet [Mon, 9 Aug 2010 19:06:02 +0000 (15:06 -0400)]
radeon: Use MESA_FORMAT_SARGB8 for sRGB formats

This can be supported on r600 without using the endian swapper, and is a
better fit for (typical) uploads using GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV
anyway.

13 years agor600c: Disable alpha test during blits
Henri Verbeet [Mon, 9 Aug 2010 19:03:27 +0000 (15:03 -0400)]
r600c: Disable alpha test during blits

13 years agogallivm: More type checks.
José Fonseca [Mon, 9 Aug 2010 16:30:33 +0000 (17:30 +0100)]
gallivm: More type checks.

13 years agogallivm: Don't call LLVMBuildFNeg on llvm-2.6.
José Fonseca [Mon, 9 Aug 2010 16:26:18 +0000 (17:26 +0100)]
gallivm: Don't call LLVMBuildFNeg on llvm-2.6.

It didn't exist yet.

13 years agogallivm: Always use floating-point operators for floating-point types
nobled [Sun, 8 Aug 2010 19:44:54 +0000 (19:44 +0000)]
gallivm: Always use floating-point operators for floating-point types

This fixes the assert added in LLVM 2.8:
assert(getType()->isIntOrIntVectorTy() &&
       "Tried to create an integer operation on a non-integer type!")

But it also fixes some subtle bugs, since we should've been doing this
since LLVM 2.6 anyway.

Includes a modified patch from steckdenis@yahoo.fr for the
FNeg instructions in emit_fetch(); thanks for pointing those out.

http://bugs.freedesktop.org/29404
http://bugs.freedesktop.org/29407

Signed-off-by: José Fonseca <jfonseca@vmware.com>
13 years agoutil: Move _mm_shuffle_epi8() to u_sse.h.
José Fonseca [Mon, 9 Aug 2010 15:41:44 +0000 (16:41 +0100)]
util: Move _mm_shuffle_epi8() to u_sse.h.

It's bound to be useful elsewhere.

13 years agor600g: fix r600 context structure, avoid segfault when no scissor
Jerome Glisse [Mon, 9 Aug 2010 15:32:45 +0000 (11:32 -0400)]
r600g: fix r600 context structure, avoid segfault when no scissor

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agor300g: do not print shader compiler errors by default
Marek Olšák [Mon, 9 Aug 2010 15:15:37 +0000 (17:15 +0200)]
r300g: do not print shader compiler errors by default

13 years agor600g: fix some warnings
Marek Olšák [Mon, 9 Aug 2010 12:57:56 +0000 (14:57 +0200)]
r600g: fix some warnings

13 years agor600g: fill out some missing caps and sort them
Marek Olšák [Mon, 9 Aug 2010 12:53:58 +0000 (14:53 +0200)]
r600g: fill out some missing caps and sort them

The shader caps need additional corrections.

(based on a patch from netkas at Phoronix)

13 years agoradeon: fix npot mipmap alignment on r600
Andre Maasikas [Mon, 9 Aug 2010 11:37:01 +0000 (14:37 +0300)]
radeon: fix npot mipmap alignment on r600

seems it got lost in commit 0d383547
have no earlier radeons to test, but npot mipmaps were not supported there?

13 years agor600: bump glsl version
Andre Maasikas [Mon, 9 Aug 2010 11:28:00 +0000 (14:28 +0300)]
r600: bump glsl version

from the tests i couldn't find any new driver faults

13 years agor300g: fix hiz/zmask offset emissions.
Dave Airlie [Mon, 9 Aug 2010 09:56:45 +0000 (19:56 +1000)]
r300g: fix hiz/zmask offset emissions.

ofs is in dwords, so need to shift it for registers.

Signed-off-by: Dave Airlie <airlied@redhat.com>
13 years agonouveau: fix maps with PIPE_TRANSFER_UNSYNCHRONIZED | PIPE_TRANSFER_DONTBLOCK
Luca Barbieri [Mon, 9 Aug 2010 02:56:03 +0000 (04:56 +0200)]
nouveau: fix maps with PIPE_TRANSFER_UNSYNCHRONIZED | PIPE_TRANSFER_DONTBLOCK

In this case, we were incorrectly prioritizing PIPE_TRANSFER_DONTBLOCK over
PIPE_TRANSFER_UNSYNCHRONIZED.

This can lead to failure in the Mesa VBO draw paths that end up specifying
both, but don't expect map to fail (in particular, the problem manifested as
a leak of buffer objects in teapot with other changes).

13 years agor300g: remove a flush
Marek Olšák [Sun, 8 Aug 2010 21:09:46 +0000 (23:09 +0200)]
r300g: remove a flush

Ooops, it wasn't supposed to be there.

13 years agogallivm: Fix more integer operations.
José Fonseca [Sun, 8 Aug 2010 21:18:53 +0000 (22:18 +0100)]
gallivm: Fix more integer operations.

13 years agogallivm: Use the correct context for integers
nobled [Sun, 8 Aug 2010 20:17:30 +0000 (20:17 +0000)]
gallivm: Use the correct context for integers

See:
http://bugs.freedesktop.org/29407

13 years agor300g: flush zmasks of zbuffers we are going to use as samplers
Marek Olšák [Sun, 8 Aug 2010 16:43:42 +0000 (18:43 +0200)]
r300g: flush zmasks of zbuffers we are going to use as samplers

It sometimes works, sometimes not. I guess we have the zmask offsets wrong.

13 years agor300g: do not allocate a zmask block for 3D textures and cubemaps
Marek Olšák [Sun, 8 Aug 2010 16:21:53 +0000 (18:21 +0200)]
r300g: do not allocate a zmask block for 3D textures and cubemaps

13 years agor300g: generalize the way we ask for hyperz
Marek Olšák [Sat, 7 Aug 2010 00:05:03 +0000 (02:05 +0200)]
r300g: generalize the way we ask for hyperz

This makes it compatible with the modified DRM interface in drm-radeon-testing.

Also, now you need to set RADEON_HYPERZ=1 to be able to use hyperz.
It's not bug-free yet.

13 years agogallivm: Add type checks for the basic operations.
José Fonseca [Sun, 8 Aug 2010 20:02:59 +0000 (21:02 +0100)]
gallivm: Add type checks for the basic operations.

13 years agodraw: Remove unused variable.
José Fonseca [Sun, 8 Aug 2010 12:58:23 +0000 (13:58 +0100)]
draw: Remove unused variable.

13 years agodraw: Use the correct type for integers
nobled [Fri, 6 Aug 2010 17:36:41 +0000 (17:36 +0000)]
draw: Use the correct type for integers

Two integers were being operated on as
a vector of floats in draw_llvm_generate().

This bug got uncovered by fixing this bug:
http://bugs.freedesktop.org/29407

13 years agor300g: take hiz/zmask offsets into a/c when clearing.
Dave Airlie [Sun, 8 Aug 2010 09:12:14 +0000 (19:12 +1000)]
r300g: take hiz/zmask offsets into a/c when clearing.

Need to add a test for multi-hiz/zmask db in a single context.

Signed-off-by: Dave Airlie <airlied@redhat.com>
13 years agoi810: Add missing header m_xform.h.
Vinson Lee [Sun, 8 Aug 2010 06:38:20 +0000 (23:38 -0700)]
i810: Add missing header m_xform.h.

This is another follow-up to commit
f4511c4835879090ce7e6afe3ac26b98fb91899a.

13 years agodri: Add missing header m_xform.h.
Vinson Lee [Sun, 8 Aug 2010 06:19:27 +0000 (23:19 -0700)]
dri: Add missing header m_xform.h.

This is a follow-up patch to commit
f4511c4835879090ce7e6afe3ac26b98fb91899a.

Files that include tnl_dd/t_dd_dmatmp.h now need to also include
m_xform.h as t_context.h no longer includes it.

13 years agotnl: Reduce header file inclusion in t_context.h.
Vinson Lee [Sun, 8 Aug 2010 05:56:35 +0000 (22:56 -0700)]
tnl: Reduce header file inclusion in t_context.h.

t_context.h
Remove m_matrix.h and m_xform.h.

t_vb_program.c
Include m_xform.h.

t_vb_render.c
Include m_xform.h.

13 years agoswrast: Reduce header file inclusion in s_zoom.h.
Vinson Lee [Sun, 8 Aug 2010 05:13:19 +0000 (22:13 -0700)]
swrast: Reduce header file inclusion in s_zoom.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Fix header file inclusion in s_texfilter.h.
Vinson Lee [Sun, 8 Aug 2010 05:05:28 +0000 (22:05 -0700)]
swrast: Fix header file inclusion in s_texfilter.h.

Include mtypes.h for GLcontext symbol.
Include s_context.h for texture_sample_func symbol.

13 years agoswrast: Reduce header file inclusion in s_texcombine.h.
Vinson Lee [Sun, 8 Aug 2010 05:01:27 +0000 (22:01 -0700)]
swrast: Reduce header file inclusion in s_texcombine.h.

Include mtypes.h for GLcontext sybmol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Reduce header file inclusion in s_stencil.h.
Vinson Lee [Sun, 8 Aug 2010 04:44:53 +0000 (21:44 -0700)]
swrast: Reduce header file inclusion in s_stencil.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Reduce header file inclusion in s_masking.h.
Vinson Lee [Sun, 8 Aug 2010 04:24:16 +0000 (21:24 -0700)]
swrast: Reduce header file inclusion in s_masking.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Reduce header file inclusion in s_logic.h.
Vinson Lee [Sun, 8 Aug 2010 04:07:11 +0000 (21:07 -0700)]
swrast: Reduce header file inclusion in s_logic.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Reduce header file inclusion in s_fragprog.h.
Vinson Lee [Sun, 8 Aug 2010 04:01:12 +0000 (21:01 -0700)]
swrast: Reduce header file inclusion in s_fragprog.h.

s_fragprog.h
Include mtype.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

s_fragprog.c
Include s_context.h now that it is removed from s_fragprog.h.

13 years agoswrast: Reduce header file inclusion in s_fog.h.
Vinson Lee [Sat, 7 Aug 2010 20:57:50 +0000 (13:57 -0700)]
swrast: Reduce header file inclusion in s_fog.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Clean up header file inclusion in s_depth.h.
Vinson Lee [Sat, 7 Aug 2010 20:04:50 +0000 (13:04 -0700)]
swrast: Clean up header file inclusion in s_depth.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Include missing header in s_context.h.
Vinson Lee [Sat, 7 Aug 2010 19:44:58 +0000 (12:44 -0700)]
swrast: Include missing header in s_context.h.

Include compiler.h for _ASMAPIP symbol.

13 years agoswrast: Clean up header file inclusion in s_blend.h.
Vinson Lee [Sat, 7 Aug 2010 19:36:50 +0000 (12:36 -0700)]
swrast: Clean up header file inclusion in s_blend.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agoswrast: Clean up header file inclusion in s_atifragshader.h.
Vinson Lee [Sat, 7 Aug 2010 19:25:20 +0000 (12:25 -0700)]
swrast: Clean up header file inclusion in s_atifragshader.h.

s_atifragshader.h
Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

s_atifragshader.c
Include s_context.h for SWcontext symbol.

13 years agoswrast: Clean up header file inclusion in s_alpha.h.
Vinson Lee [Sat, 7 Aug 2010 19:19:29 +0000 (12:19 -0700)]
swrast: Clean up header file inclusion in s_alpha.h.

Include mtypes.h for GLcontext symbol.
Include s_span.h for SWspan symbol.

13 years agor300c: do not advertise half float vertex on RV3xx, RS4xx, RC4xx
Marek Olšák [Sat, 7 Aug 2010 16:10:07 +0000 (18:10 +0200)]
r300c: do not advertise half float vertex on RV3xx, RS4xx, RC4xx

Fixes a hardlock.

NOTE: this is a candidate for the 7.8 branch, provided the half float vertex
is really implemented there.

13 years agost/mesa: Remove unnecessary header.
Vinson Lee [Sat, 7 Aug 2010 01:45:15 +0000 (18:45 -0700)]
st/mesa: Remove unnecessary header.

13 years agor300g: fix cbzb clears when hyperz is off
Marek Olšák [Fri, 6 Aug 2010 23:59:31 +0000 (01:59 +0200)]
r300g: fix cbzb clears when hyperz is off

13 years agonouveau: fix potential NULL-ptr dereference in nouveau_stateobj.h
Maarten Maathuis [Fri, 6 Aug 2010 21:56:31 +0000 (23:56 +0200)]
nouveau: fix potential NULL-ptr dereference in nouveau_stateobj.h

- This can only be triggered when DEBUG_NOUVEAU_STATEOBJ is active.
- Also remove a redundant pointer assignment.

Reported-by: Roy Spliet <r.spliet@student.tudelft.nl>
Signed-off-by: Maarten Maathuis <madman2003@gmail.com>
13 years agor600g: add PA_CL_CLIP_CNTL definition
Jerome Glisse [Fri, 6 Aug 2010 21:27:36 +0000 (17:27 -0400)]
r600g: add PA_CL_CLIP_CNTL definition

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agor600g: fix rendering, only enable target we write too
Jerome Glisse [Fri, 6 Aug 2010 21:22:45 +0000 (17:22 -0400)]
r600g: fix rendering, only enable target we write too

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agor600g: really fix multi target support
Jerome Glisse [Fri, 6 Aug 2010 21:12:37 +0000 (17:12 -0400)]
r600g: really fix multi target support

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
13 years agost/mesa: remove stray semicolons
Brian Paul [Fri, 6 Aug 2010 21:09:51 +0000 (15:09 -0600)]
st/mesa: remove stray semicolons

13 years agogallium: remove stray semicolons
Brian Paul [Fri, 6 Aug 2010 21:09:41 +0000 (15:09 -0600)]
gallium: remove stray semicolons

13 years agor600g: finish multi target rendering support
Jerome Glisse [Fri, 6 Aug 2010 20:10:25 +0000 (16:10 -0400)]
r600g: finish multi target rendering support

Signed-off-by: Jerome Glisse <jglisse@redhat.com>