mesa.git
15 years agoMerge commit 'origin/gallium-0.1'
Keith Whitwell [Wed, 18 Feb 2009 15:14:39 +0000 (15:14 +0000)]
Merge commit 'origin/gallium-0.1'

Conflicts:

src/gallium/auxiliary/draw/draw_vs_aos.c

15 years agor300-gallium: Factor out common functionality in vbuf emit.
Corbin Simpson [Wed, 18 Feb 2009 14:38:21 +0000 (06:38 -0800)]
r300-gallium: Factor out common functionality in vbuf emit.

15 years agodraw: Reuse xmm registers.
Keith Whitwell [Tue, 17 Feb 2009 21:45:54 +0000 (21:45 +0000)]
draw: Reuse xmm registers.

15 years agotrivial: Make tri-fog a bit more interesting to look at
Jakob Bornecrantz [Fri, 13 Feb 2009 22:03:57 +0000 (23:03 +0100)]
trivial: Make tri-fog a bit more interesting to look at

15 years agoMerge commit 'origin/draw-vbuf-interface'
Keith Whitwell [Wed, 18 Feb 2009 12:54:26 +0000 (12:54 +0000)]
Merge commit 'origin/draw-vbuf-interface'

15 years agoutil: Move p_debug.h into util module.
José Fonseca [Wed, 18 Feb 2009 12:05:26 +0000 (12:05 +0000)]
util: Move p_debug.h into util module.

The debug functions depend on several util function for os abstractions, and
these depend on debug functions, so a seperate module is not possible.

15 years agoutil: (Re)enable memory debugging for all windows platforms.
José Fonseca [Tue, 17 Feb 2009 21:54:39 +0000 (21:54 +0000)]
util: (Re)enable memory debugging for all windows platforms.

15 years agowgl: Report memory leaks.
José Fonseca [Tue, 17 Feb 2009 21:53:40 +0000 (21:53 +0000)]
wgl: Report memory leaks.

15 years agodraw: Reuse xmm registers.
Keith Whitwell [Wed, 18 Feb 2009 10:08:19 +0000 (10:08 +0000)]
draw: Reuse xmm registers.

15 years agor300-gallium: Properly init shader state.
Corbin Simpson [Wed, 18 Feb 2009 05:31:33 +0000 (21:31 -0800)]
r300-gallium: Properly init shader state.

15 years agor300-gallium: Consolidate state updates.
Corbin Simpson [Wed, 18 Feb 2009 05:30:55 +0000 (21:30 -0800)]
r300-gallium: Consolidate state updates.

15 years agomesa: add some debug code to help diagnose incomplete FBO attachments (disabled)
Brian Paul [Tue, 17 Feb 2009 23:47:54 +0000 (16:47 -0700)]
mesa: add some debug code to help diagnose incomplete FBO attachments (disabled)

15 years agoglsl: fix mistake in a comment
Brian Paul [Tue, 17 Feb 2009 23:31:59 +0000 (16:31 -0700)]
glsl: fix mistake in a comment

15 years agomesa: turn on reporting of GLSL version 1.20
Brian Paul [Tue, 17 Feb 2009 23:12:49 +0000 (16:12 -0700)]
mesa: turn on reporting of GLSL version 1.20

The new array features, precision/invariant/centroid qualifiers, etc. were
done a while back.  The glGetString(GL_SHADING_LANGUAGE_VERSION) query returns
"1.20" now (for drivers that support it anyway).

15 years agoglsl: fix an array indexing bug
Brian Paul [Tue, 17 Feb 2009 23:10:32 +0000 (16:10 -0700)]
glsl: fix an array indexing bug

This fixes a bug found with swizzled array indexes such as in "array[index.z]"
where "index" is an ivec4.

15 years agoglsl: added --params option to stand-alone GLSL compiler
Brian Paul [Tue, 17 Feb 2009 22:57:46 +0000 (15:57 -0700)]
glsl: added --params option to stand-alone GLSL compiler

Prints program parameter info

15 years agomesa: when printing/dumping instruction, include relative addressing info
Brian Paul [Tue, 17 Feb 2009 22:57:00 +0000 (15:57 -0700)]
mesa: when printing/dumping instruction, include relative addressing info

Not all cases were handled before.

15 years agointel: Fix tri clear to do FBO color attachments as well.
Eric Anholt [Tue, 17 Feb 2009 18:53:37 +0000 (10:53 -0800)]
intel: Fix tri clear to do FBO color attachments as well.

This is a 2% win in fbo_firecube, and would avoid a sw fallback for
masked clears.

15 years agoi965: Fix fallback on stencil drawing to fbo when the visual lacks stencil.
Eric Anholt [Tue, 17 Feb 2009 18:53:11 +0000 (10:53 -0800)]
i965: Fix fallback on stencil drawing to fbo when the visual lacks stencil.

Noticed this with the fbotexture demo.

15 years agointel: Clean up several 965 memory leaks on context destroy.
Eric Anholt [Wed, 11 Feb 2009 09:15:36 +0000 (01:15 -0800)]
intel: Clean up several 965 memory leaks on context destroy.

15 years agomesa: remove old comment as it's fixed elsewhere now.
Alan Hourihane [Tue, 17 Feb 2009 09:56:06 +0000 (09:56 +0000)]
mesa: remove old comment as it's fixed elsewhere now.

15 years agosoftpipe: some improvements to texture tile cache
Brian Paul [Tue, 17 Feb 2009 01:45:58 +0000 (18:45 -0700)]
softpipe: some improvements to texture tile cache

Use a somewhat better function in tex_cache_pos() to get better caching.

Increase number of cache entries to 50.

Also fix a texture invalidation bug.  If texture is marked as modified,
invalidate all texture tiles.

15 years agogallium: fix glean's vertProg1
Alan Hourihane [Mon, 16 Feb 2009 20:20:55 +0000 (20:20 +0000)]
gallium: fix glean's vertProg1
         RSQ test 2 (reciprocal square toot of negative value)

15 years agomesa: remove old comments
Brian Paul [Mon, 16 Feb 2009 18:50:05 +0000 (11:50 -0700)]
mesa: remove old comments

Note: the default value for EmitCondCodes is FALSE.  This means the GLSL
compiler will emit code like this:

SEQ TEMP[0].x, A, B;
IF TEMP[0].x;
   ...
ENDIF

But if EmitCondCodes is TRUE, condition codes will be used instead:

SEQ.C TEMP[0].x, A, B;
IF (NE.xxxx);
   ...
ENDIF

15 years agoi965: tell GLSL compiler to emit code using condition codes
Brian Paul [Mon, 16 Feb 2009 18:45:57 +0000 (11:45 -0700)]
i965: tell GLSL compiler to emit code using condition codes

The default for EmitCondCodes got flipped when gallium-0.2 was merged.
This fixes GLSL if/else/endif regressions.
Drivers that use GLSL should always explicitly set the flag to be safe.

15 years agonouveau: oops :-)
Patrice Mandin [Mon, 16 Feb 2009 17:43:56 +0000 (18:43 +0100)]
nouveau: oops :-)

15 years agoautoconf: Always enable glew
Dan Nicholson [Mon, 16 Feb 2009 17:28:35 +0000 (09:28 -0800)]
autoconf: Always enable glew

Maybe this should turn into an option (--disable-glew), but for now just
enable glew all the time.

15 years agoglsl: silence some uninit var warnings
Brian Paul [Mon, 16 Feb 2009 15:25:57 +0000 (08:25 -0700)]
glsl: silence some uninit var warnings

15 years agocell: use some SPU intrinsics to get slightly better code in eval_inputs()
Brian Paul [Mon, 16 Feb 2009 15:25:33 +0000 (08:25 -0700)]
cell: use some SPU intrinsics to get slightly better code in eval_inputs()

Suggested by Jonathan Adamczewski.  There may be more places to do this...

15 years agor300-gallium: Add verbosity level to debugging.
Corbin Simpson [Mon, 16 Feb 2009 11:56:03 +0000 (03:56 -0800)]
r300-gallium: Add verbosity level to debugging.

Makes it a bit more manageable to read through the console logs.

15 years agor300-gallium: Fix BEGIN_CS and END_CS counting and mismatch.
Corbin Simpson [Mon, 16 Feb 2009 11:55:16 +0000 (03:55 -0800)]
r300-gallium: Fix BEGIN_CS and END_CS counting and mismatch.

15 years agor300-gallium: Set up draw rasterizer.
Corbin Simpson [Mon, 16 Feb 2009 11:33:56 +0000 (03:33 -0800)]
r300-gallium: Set up draw rasterizer.

15 years agodemos: fix glxpixmap and call glXWaitGL before calling XCopyArea.
Alan Hourihane [Mon, 16 Feb 2009 11:54:58 +0000 (11:54 +0000)]
demos: fix glxpixmap and call glXWaitGL before calling XCopyArea.

15 years agodri2: support glXWaitX & glXWaitGL by using fake front buffer.
Alan Hourihane [Mon, 16 Feb 2009 11:44:40 +0000 (11:44 +0000)]
dri2: support glXWaitX & glXWaitGL by using fake front buffer.

15 years agor300-gallium: Ooops, forgot to apply this stash.
Corbin Simpson [Mon, 16 Feb 2009 11:13:16 +0000 (03:13 -0800)]
r300-gallium: Ooops, forgot to apply this stash.

"git stash": The cause of, and solution to, all my problems.

15 years agor300-gallium: Include-guard r300_emit.h
Corbin Simpson [Mon, 16 Feb 2009 11:03:28 +0000 (03:03 -0800)]
r300-gallium: Include-guard r300_emit.h

15 years agor300-gallium: Add draw_arrays and friends.
Corbin Simpson [Mon, 16 Feb 2009 10:53:34 +0000 (02:53 -0800)]
r300-gallium: Add draw_arrays and friends.

This is the last bit of Gallium-side plumbing for drawing things.
From this point on, the only missing parts should be in r3xx-specific
code areas...

15 years agor300-gallium: Add SC_CLIP_RULE to clear.
Corbin Simpson [Mon, 16 Feb 2009 10:52:47 +0000 (02:52 -0800)]
r300-gallium: Add SC_CLIP_RULE to clear.

This is a register that is in r300_demo but not r300_surface, so adding it in
to see if it helps.

15 years agocell: minor Makefile clean-up
Brian Paul [Sun, 15 Feb 2009 19:08:47 +0000 (12:08 -0700)]
cell: minor Makefile clean-up

15 years agocell: new/tighter code for computing fragment program inputs
Brian Paul [Sun, 15 Feb 2009 19:08:02 +0000 (12:08 -0700)]
cell: new/tighter code for computing fragment program inputs

15 years agocell: combine eval_z(), eval_w() functions
Brian Paul [Sun, 15 Feb 2009 16:25:22 +0000 (09:25 -0700)]
cell: combine eval_z(), eval_w() functions

15 years agor300-gallium: Fix scissors.
Corbin Simpson [Sat, 14 Feb 2009 23:24:44 +0000 (15:24 -0800)]
r300-gallium: Fix scissors.

Don't use SCISSORS_OFFSET since we're DRI2,
and don't forget to set scissors in clear.

15 years agor300-gallium: Grab bag of goodies.
Corbin Simpson [Sat, 14 Feb 2009 12:41:29 +0000 (04:41 -0800)]
r300-gallium: Grab bag of goodies.

Some fixes from glisse, moar swtcl emit setup, cleanup a bunch of regs,
properly do clear flush, and BEGIN_CS count fixes.

15 years agor300-gallium: Clean up some clear registers.
Corbin Simpson [Sat, 14 Feb 2009 12:11:27 +0000 (04:11 -0800)]
r300-gallium: Clean up some clear registers.

15 years agor300-gallium: Use fui instead of a roll-my-own.
Corbin Simpson [Sat, 14 Feb 2009 11:23:50 +0000 (03:23 -0800)]
r300-gallium: Use fui instead of a roll-my-own.

Man, util/u_math just gets better by the day.

15 years agor300: Redirect constant TEX coordinates
Nicolai Haehnle [Sat, 14 Feb 2009 16:06:06 +0000 (17:06 +0100)]
r300: Redirect constant TEX coordinates

R3xx/R5xx fragment program texture constants must come from a hardware
register instead of the constant file, so we redirect if necessary during
the native rewrite phase.

The symptoms of this bug started appearing when the Mesa fixed function
texenvprogram code started using STATE_CURRENT_ATTRIB constants for
texture coordinates when the corresponding attributes were constant across
all vertices.

Signed-off-by: Nicolai Haehnle <nhaehnle@gmail.com>
15 years agoradeon-gallium: Clean out extensions explicitly enabled by Mesa.
Corbin Simpson [Sat, 14 Feb 2009 10:40:33 +0000 (02:40 -0800)]
radeon-gallium: Clean out extensions explicitly enabled by Mesa.

This cleans up some of the cruft from the old DRI setup, and
it turns out that only the GLSL extensions are still off if we
let st_extensions.c handle the setup instead.

15 years agor300-gallium: Update r300_screen comments and add a few formats.
Corbin Simpson [Sat, 14 Feb 2009 10:24:30 +0000 (02:24 -0800)]
r300-gallium: Update r300_screen comments and add a few formats.

15 years agor300-gallium: Enable all four colorbuffer render targets.
Corbin Simpson [Sat, 14 Feb 2009 10:07:29 +0000 (02:07 -0800)]
r300-gallium: Enable all four colorbuffer render targets.

As far as I can tell all the state emission necessary has been set up.
Well, except for the fragment shader, but c'mon, gimme a break. :3

15 years agor300-gallium: Add Z/stencil buffer format emit.
Corbin Simpson [Sat, 14 Feb 2009 10:06:17 +0000 (02:06 -0800)]
r300-gallium: Add Z/stencil buffer format emit.

Also set BEGIN_CS correctly.

15 years agor300-gallium: Emit Z/stencil buffer offset.
Corbin Simpson [Sat, 14 Feb 2009 09:55:38 +0000 (01:55 -0800)]
r300-gallium: Emit Z/stencil buffer offset.

15 years agor300-gallium: Add derived state for vertex formats.
Corbin Simpson [Sat, 14 Feb 2009 07:20:43 +0000 (23:20 -0800)]
r300-gallium: Add derived state for vertex formats.

Next up: The evil RS block.

15 years agoi965: rewrite the code for handling shader subroutine calls
Brian Paul [Sat, 14 Feb 2009 00:17:52 +0000 (17:17 -0700)]
i965: rewrite the code for handling shader subroutine calls

Previously, the prog_instruction::Data field was used to map original Mesa
instructions to brw instructions in order to resolve subroutine calls.  This
was a rather tangled mess.  Plus it's an obstacle to implementing dynamic
allocation/growing of the instruction buffer (it's still a fixed size).

Mesa's GLSL compiler emits a label for each subroutine and CAL instruction.
Now we use those labels to patch the subroutine calls after code generation
has been done.  We just keep a list of all CAL instructions that needs patching
and a list of all subroutine labels.  It's a simple matter to resolve them.

This also consolidates some redundant post-emit code between brw_vs_emit.c and
brw_wm_glsl.c and removes some loops that cleared the prog_instruction::Data
fields at the end.

Plus, a bunch of new comments.

15 years agoi965: add missing break for OPCODE_RET case
Brian Paul [Fri, 13 Feb 2009 23:56:25 +0000 (16:56 -0700)]
i965: add missing break for OPCODE_RET case

This doesn't effect correctness, but we were emitting an extraneous ADD.

15 years agoi965: the return value of translate_insn() is never used. Make it void.
Brian Paul [Thu, 12 Feb 2009 23:03:39 +0000 (16:03 -0700)]
i965: the return value of translate_insn() is never used.  Make it void.

15 years agoi965: minor clean-ups
Brian Paul [Thu, 12 Feb 2009 22:40:04 +0000 (15:40 -0700)]
i965: minor clean-ups

15 years agoi965: code clean-ups, comments, and minor refactoring
Brian Paul [Thu, 12 Feb 2009 22:35:41 +0000 (15:35 -0700)]
i965: code clean-ups, comments, and minor refactoring

15 years agoi965: updated comments
Brian Paul [Thu, 12 Feb 2009 22:35:02 +0000 (15:35 -0700)]
i965: updated comments

15 years agointel: turn on GL_ARB_shading_language_120
Brian Paul [Thu, 12 Feb 2009 22:04:21 +0000 (15:04 -0700)]
intel: turn on GL_ARB_shading_language_120

It's done in the Mesa GLSL compiler.  The only part of it that might
matter in drivers is the centroid sampling option for MSAA.

15 years agoi965: more reformatting/clean-up
Brian Paul [Thu, 12 Feb 2009 21:58:19 +0000 (14:58 -0700)]
i965: more reformatting/clean-up

15 years agoi965: s/__inline/INLINE/
Brian Paul [Thu, 12 Feb 2009 21:54:13 +0000 (14:54 -0700)]
i965: s/__inline/INLINE/

15 years agoi965: formatting and indentation fixes
Brian Paul [Thu, 12 Feb 2009 21:53:30 +0000 (14:53 -0700)]
i965: formatting and indentation fixes

15 years agoi965: fix inconsistant indentation in brw_wm.c
Brian Paul [Thu, 12 Feb 2009 21:47:56 +0000 (14:47 -0700)]
i965: fix inconsistant indentation in brw_wm.c

15 years agoi965: Eric Anholt's patch for bumping up texture sizes
Robert Ellison [Fri, 13 Feb 2009 22:19:04 +0000 (15:19 -0700)]
i965: Eric Anholt's patch for bumping up texture sizes

I'm committing this because it fixes a conform failure; the failure occurs
on the TextureProxy test, where the test attempts to create proxy textures
at every level, but fails at the last level (border == 1, width == 1,
height == 1) because it's beyond MAX_TEXTURE_LEVELS.

Eric's original comment was:

idr said that in his review swrast was ready for it, and the 965 driver is
advertising it already though it has been resulting in many crashes due to
arrays using these defines not being big enough.

15 years agotrivial: Add a tri-unfilled-fog test
Jakob Bornecrantz [Fri, 13 Feb 2009 20:17:39 +0000 (21:17 +0100)]
trivial: Add a tri-unfilled-fog test

15 years agor300-gallium: Add draw_arrays for swtcl_emit.
Corbin Simpson [Wed, 18 Feb 2009 05:32:40 +0000 (21:32 -0800)]
r300-gallium: Add draw_arrays for swtcl_emit.

The more I look at this, the more bugs I see.

15 years agor300-gallium: Properly init shader state.
Corbin Simpson [Wed, 18 Feb 2009 05:31:33 +0000 (21:31 -0800)]
r300-gallium: Properly init shader state.

15 years agor300-gallium: Consolidate state updates.
Corbin Simpson [Wed, 18 Feb 2009 05:30:55 +0000 (21:30 -0800)]
r300-gallium: Consolidate state updates.

15 years agor300-gallium: Hook up new swtcl vbuf stage.
Corbin Simpson [Wed, 18 Feb 2009 03:23:09 +0000 (19:23 -0800)]
r300-gallium: Hook up new swtcl vbuf stage.

Hold on to your hats.

15 years agor300-gallium: Turn swtcl_emit into a vbuf_render stage.
Corbin Simpson [Wed, 18 Feb 2009 03:04:39 +0000 (19:04 -0800)]
r300-gallium: Turn swtcl_emit into a vbuf_render stage.

Movin' out of the Stone Ages.

15 years agor300-gallium: Update r300_reg from classic Mesa.
Corbin Simpson [Wed, 18 Feb 2009 02:45:19 +0000 (18:45 -0800)]
r300-gallium: Update r300_reg from classic Mesa.

Mostly needed a few defines for index buffers, but there's other goodies too.

15 years agodemos: Add polygon mode point to isosurf
Jakob Bornecrantz [Fri, 13 Feb 2009 16:53:49 +0000 (17:53 +0100)]
demos: Add polygon mode point to isosurf

15 years agonv20: Use the new draw vbuf interface
Jakob Bornecrantz [Tue, 17 Feb 2009 15:04:02 +0000 (15:04 +0000)]
nv20: Use the new draw vbuf interface

15 years agonv10: Use the new draw vbuf internface
Jakob Bornecrantz [Tue, 17 Feb 2009 14:47:42 +0000 (14:47 +0000)]
nv10: Use the new draw vbuf internface

15 years agonv04: Use the new draw vbuf interface
Jakob Bornecrantz [Tue, 17 Feb 2009 14:37:20 +0000 (14:37 +0000)]
nv04: Use the new draw vbuf interface

15 years agor300-gallium: Various thingies.
Corbin Simpson [Fri, 13 Feb 2009 16:14:42 +0000 (08:14 -0800)]
r300-gallium: Various thingies.

Add formats to framebuffer emit, fix up shader function names,
make sure fragment format is emitted for r500.

15 years agoAdd dummy install target for glew to fix 'make install'
Dan Nicholson [Fri, 13 Feb 2009 15:31:24 +0000 (07:31 -0800)]
Add dummy install target for glew to fix 'make install'

Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
15 years agoautoconf: Add GLEW needed by progs when building GLUT
Dan Nicholson [Fri, 13 Feb 2009 14:34:09 +0000 (06:34 -0800)]
autoconf: Add GLEW needed by progs when building GLUT

Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
15 years agomesa: check if TNL state is null in _tnl_free_vertices() to avoid potential segfault
Brian Paul [Fri, 13 Feb 2009 15:11:01 +0000 (08:11 -0700)]
mesa: check if TNL state is null in _tnl_free_vertices() to avoid potential segfault

_tnl_free_vertices() is called from several places during context tear-down.
Depending on the order in which the swrast, swrast_setup and tnl context is
destroyed we could hit a null pointer here.  This doesn't seem to be an
actual issue with any Mesa drivers, but let's be safe.

15 years agomesa: add additional texture size/limit assertions
Brian Paul [Fri, 13 Feb 2009 14:44:02 +0000 (07:44 -0700)]
mesa: add additional texture size/limit assertions

15 years agoi915: Use the new draw vbuf interface
Jakob Bornecrantz [Fri, 13 Feb 2009 10:37:25 +0000 (11:37 +0100)]
i915: Use the new draw vbuf interface

15 years agodraw: second argument to unmap is max, not count
Keith Whitwell [Tue, 17 Feb 2009 12:39:05 +0000 (12:39 +0000)]
draw: second argument to unmap is max, not count

15 years agosoftpipe: update to new draw interfaces
Keith Whitwell [Tue, 17 Feb 2009 12:20:05 +0000 (12:20 +0000)]
softpipe: update to new draw interfaces

15 years agodraw: add map/unmap directives for swtnl driver interface
Keith Whitwell [Tue, 17 Feb 2009 12:07:09 +0000 (12:07 +0000)]
draw: add map/unmap directives for swtnl driver interface

Previously draw module asked for a pointer into (mapped) vertex data,
which it would incrementally fill and emit draw commands against.  This
was hard for the drivers to deal with, especially in the case where a
draw command would force a flush and thus an unmap of the vertex data.

With this change, the draw module explicitly maps & then unmaps vertex
data prior to emitting draw commands.

15 years agoegl: Doesn't depend on xorg or pixman
Jakob Bornecrantz [Thu, 12 Feb 2009 02:59:07 +0000 (03:59 +0100)]
egl: Doesn't depend on xorg or pixman

15 years agor300-gallium: Take care of various bad dereferences in shader setup.
Corbin Simpson [Fri, 13 Feb 2009 07:36:21 +0000 (23:36 -0800)]
r300-gallium: Take care of various bad dereferences in shader setup.

Unbreaks glxinfo.

15 years agor300-gallium: Fix linker error a few linker warnings.
Corbin Simpson [Fri, 13 Feb 2009 04:47:15 +0000 (20:47 -0800)]
r300-gallium: Fix linker error a few linker warnings.

A few prototypes, a missing header, a misspelled macro.

15 years agor300-gallium: Fix build errors.
Corbin Simpson [Fri, 13 Feb 2009 04:35:17 +0000 (20:35 -0800)]
r300-gallium: Fix build errors.

15 years agor300-gallium: fix OUT_CS_ONE_REG and use where applicable
Joakim Sindholt [Fri, 13 Feb 2009 04:08:54 +0000 (05:08 +0100)]
r300-gallium: fix OUT_CS_ONE_REG and use where applicable

Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com>
15 years agor300-gallium: r300 passthrough shader, static shader objects, and clear code.
Corbin Simpson [Fri, 13 Feb 2009 04:20:41 +0000 (20:20 -0800)]
r300-gallium: r300 passthrough shader, static shader objects, and clear code.

15 years agor300-gallium: Add r300 passthrough shader.
Corbin Simpson [Fri, 13 Feb 2009 04:01:09 +0000 (20:01 -0800)]
r300-gallium: Add r300 passthrough shader.

15 years agor300: minor fixes and clear up some surface_fill
Joakim Sindholt [Fri, 13 Feb 2009 01:34:34 +0000 (02:34 +0100)]
r300: minor fixes and clear up some surface_fill

Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com>
15 years agor300-gallium: Add r500 passthrough shader assembly.
Corbin Simpson [Fri, 13 Feb 2009 00:53:06 +0000 (16:53 -0800)]
r300-gallium: Add r500 passthrough shader assembly.

This allows a simple passthrough fragment shader to be provided on r500.

15 years agor300-gallium: Fix typo in texture buffer size request.
Corbin Simpson [Fri, 13 Feb 2009 00:52:15 +0000 (16:52 -0800)]
r300-gallium: Fix typo in texture buffer size request.

15 years agointel: Only build winsys with built state trackers
Jakob Bornecrantz [Fri, 13 Feb 2009 00:17:11 +0000 (01:17 +0100)]
intel: Only build winsys with built state trackers

15 years agogallium: Add a bunch of autoconf options
Jakob Bornecrantz [Thu, 12 Feb 2009 23:57:47 +0000 (00:57 +0100)]
gallium: Add a bunch of autoconf options

./configure --help for more info

15 years agogalium: Makefile fixes: -Werror=implicit-function-declaration -> -Werror-implicit...
Benjamin Close [Thu, 12 Feb 2009 23:37:26 +0000 (10:07 +1030)]
galium: Makefile fixes: -Werror=implicit-function-declaration -> -Werror-implicit-function-declaration

Found-By: Tinderbox
15 years agointel: Make gem export the drm_api_hocks
Jakob Bornecrantz [Mon, 2 Feb 2009 00:30:05 +0000 (01:30 +0100)]
intel: Make gem export the drm_api_hocks

15 years agointel: Remove the old depricated dri1 winsys
Jakob Bornecrantz [Mon, 2 Feb 2009 00:33:38 +0000 (01:33 +0100)]
intel: Remove the old depricated dri1 winsys

15 years agointel: Remove the ttm backend
Jakob Bornecrantz [Mon, 2 Feb 2009 00:32:11 +0000 (01:32 +0100)]
intel: Remove the ttm backend

RIP ttm, its been fun knowing you.