mesa.git
15 years agomesa: move GLfixed type and related macros to swrast module
Brian Paul [Sat, 28 Feb 2009 05:26:18 +0000 (22:26 -0700)]
mesa: move GLfixed type and related macros to swrast module

Fixed point is only used in swrast and sw-based drivers.

15 years agomesa: convert macro to inline function
Brian Paul [Sat, 28 Feb 2009 05:21:42 +0000 (22:21 -0700)]
mesa: convert macro to inline function

15 years agomesa: replace FEEDBACK_TOKEN macro with _mesa_feedback_token() inline function
Brian Paul [Sat, 28 Feb 2009 05:18:33 +0000 (22:18 -0700)]
mesa: replace FEEDBACK_TOKEN macro with _mesa_feedback_token() inline function

15 years agomesa: comments, whitespace, reformatting
Brian Paul [Sat, 28 Feb 2009 05:12:31 +0000 (22:12 -0700)]
mesa: comments, whitespace, reformatting

15 years agomesa: remove dead code
Brian Paul [Sat, 28 Feb 2009 05:04:58 +0000 (22:04 -0700)]
mesa: remove dead code

15 years agomesa: move gl_attrib_node struct to attrib.c too
Brian Paul [Sat, 28 Feb 2009 05:01:40 +0000 (22:01 -0700)]
mesa: move gl_attrib_node struct to attrib.c too

15 years agomesa: move gl_enable_attrib struct to attrib.c, the only place it's used
Brian Paul [Sat, 28 Feb 2009 04:41:26 +0000 (21:41 -0700)]
mesa: move gl_enable_attrib struct to attrib.c, the only place it's used

15 years agomesa: lots of updated comments, formatting clean-ups
Brian Paul [Sat, 28 Feb 2009 04:39:04 +0000 (21:39 -0700)]
mesa: lots of updated comments, formatting clean-ups

15 years agor300-gallium: A handful of fixups.
Corbin Simpson [Sat, 28 Feb 2009 16:13:31 +0000 (08:13 -0800)]
r300-gallium: A handful of fixups.

15 years agor300-gallium: Fix C99 error.
Corbin Simpson [Sat, 28 Feb 2009 08:01:41 +0000 (00:01 -0800)]
r300-gallium: Fix C99 error.

15 years agor300-gallium: Fix RS.
Corbin Simpson [Sat, 28 Feb 2009 07:40:18 +0000 (23:40 -0800)]
r300-gallium: Fix RS.

I should just stop using "git stash" altogether.

15 years agotgsi: More descriptive sanity diagnostic messages.
Michal Krol [Sat, 28 Feb 2009 14:09:43 +0000 (15:09 +0100)]
tgsi: More descriptive sanity diagnostic messages.

15 years agodemos: fix renderbuffer leak in progs/tests/fbotexture.c
Brian Paul [Fri, 27 Feb 2009 22:46:40 +0000 (15:46 -0700)]
demos: fix renderbuffer leak in progs/tests/fbotexture.c

And re-org some code for testing purposes.

15 years agointel: remove some unneeded buffer unmap calls
Brian Paul [Fri, 27 Feb 2009 20:13:52 +0000 (13:13 -0700)]
intel: remove some unneeded buffer unmap calls

Core mesa now unmaps the buffers if needed in these cases.

15 years agomesa: update fragResults array in arb_output_attrib_string()
Brian Paul [Fri, 27 Feb 2009 20:44:42 +0000 (13:44 -0700)]
mesa: update fragResults array in arb_output_attrib_string()

Plus add some comments.

15 years agor300-gallium: Properly split up RS into r300 and r500 variants.
Corbin Simpson [Fri, 27 Feb 2009 20:23:16 +0000 (12:23 -0800)]
r300-gallium: Properly split up RS into r300 and r500 variants.

15 years agoradeon: Add DRM stubs.
Corbin Simpson [Fri, 27 Feb 2009 18:52:49 +0000 (10:52 -0800)]
radeon: Add DRM stubs.

Nothing really of note, unfortunately.

15 years agoInclude p_compiler.h in drm_api.h for boolean typedef.
Corbin Simpson [Fri, 27 Feb 2009 18:52:09 +0000 (10:52 -0800)]
Include p_compiler.h in drm_api.h for boolean typedef.

15 years agor300-gallium: Turn true and false into TRUE and FALSE.
Corbin Simpson [Fri, 27 Feb 2009 18:46:14 +0000 (10:46 -0800)]
r300-gallium: Turn true and false into TRUE and FALSE.

Match the rest of Gallium.

15 years agomesa: set bufObj->Pointer = NULL after unmapping
Brian Paul [Fri, 27 Feb 2009 20:10:45 +0000 (13:10 -0700)]
mesa: set bufObj->Pointer = NULL after unmapping

Also, ctx->Driver.UnmapBuffer can never be null, so remove conditional.

15 years agomesa: if a buffer object is mapped when glDeleteBuffers() is called, unmap it
Brian Paul [Fri, 27 Feb 2009 20:04:38 +0000 (13:04 -0700)]
mesa: if a buffer object is mapped when glDeleteBuffers() is called, unmap it

15 years agomesa: updated comments
Brian Paul [Fri, 27 Feb 2009 19:41:11 +0000 (12:41 -0700)]
mesa: updated comments

15 years agomesa: fix incorrect error handling in glBufferDataARB()
Brian Paul [Fri, 27 Feb 2009 19:30:21 +0000 (12:30 -0700)]
mesa: fix incorrect error handling in glBufferDataARB()

If glBufferDataARB() is called while a buffer object is currently mapped
we're supposed to unmap the current buffer, then replace it.  Don't generate
an error.

15 years agoi915: Add support for a new G33-like chipset.
Shaohua Li [Mon, 23 Feb 2009 07:19:21 +0000 (15:19 +0800)]
i915: Add support for a new G33-like chipset.

Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
15 years agotgsi: don't dump interpolation info except for fragment shader inputs
Keith Whitwell [Fri, 27 Feb 2009 19:33:17 +0000 (19:33 +0000)]
tgsi: don't dump interpolation info except for fragment shader inputs

Don't print the meaningless and confusing CONSTANT interpolation
attribute after everything else.

15 years agotests: new mapvbo.c test
Brian Paul [Fri, 27 Feb 2009 18:45:06 +0000 (11:45 -0700)]
tests: new mapvbo.c test

Test that glDrawArrays() isn't effected by a glMapBuffer()/modify/glUnmapBuffer()
immediately afterward.

15 years agor300-gallium: Add RS block setup.
Corbin Simpson [Fri, 27 Feb 2009 18:15:42 +0000 (10:15 -0800)]
r300-gallium: Add RS block setup.

This is still icky, and only compile-tested.

15 years agor300-gallium: Add RS600 chipsets.
Corbin Simpson [Fri, 27 Feb 2009 16:23:01 +0000 (08:23 -0800)]
r300-gallium: Add RS600 chipsets.

15 years agor300-gallium: A handful of tiny vfmt fixups.
Corbin Simpson [Fri, 27 Feb 2009 05:25:06 +0000 (21:25 -0800)]
r300-gallium: A handful of tiny vfmt fixups.

Using a tab of inputs should work, but I keep getting bad results.
If only Rawhide's GDB wasn't broken...

15 years agoi965: texture fixes: bordered textures, fallback rendering
Robert Ellison [Fri, 27 Feb 2009 07:21:07 +0000 (00:21 -0700)]
i965: texture fixes: bordered textures, fallback rendering

i965 doesn't natively support GL_CLAMP; it treats it like
GL_CLAMP_TO_EDGE, which fails conformance tests.

This fix adds a clause to the check_fallbacks() test to check
whether GL_CLAMP is in use on any enabled 2D texture.  If so,
and if strict conformance is required (via INTEL_STRICT_CONFORMANCE),
a software fallback is mandated.

In addition, validate textures *before* checking for fallbacks,
rather than after; otherwise, the texture state is never validated
and can't be trusted.  (In particular, if texturing is enabled and
the sampler would access any level beyond level 0 of a texture, the
sampler will segfault, because texture validation sets the firstLevel
and lastLevel fields of a texture object so that the valid levels
will be mapped and accessed correctly.  If texture validation doesn't
occur, only level 0 is accessed correctly, and that only because
firstLevel and lastLevel happen to be set to 0.)

15 years agogallium: fix state tracker's stencil buffer test
Brian Paul [Fri, 27 Feb 2009 16:45:41 +0000 (09:45 -0700)]
gallium: fix state tracker's stencil buffer test

Need to check ctx->DrawBuffer->Visual.stencilBits not ctx->Visual.stencilBits
because the later only applies to the window system buffers, not user-created
FBOs.

This, plus the previous commit, fixes progs/tests/fbotexture.c

15 years agogallium: add st_validate_framebuffer() driver function
Brian Paul [Fri, 27 Feb 2009 16:43:58 +0000 (09:43 -0700)]
gallium: add st_validate_framebuffer() driver function

Gallium only supports combined depth/stencil buffers, not separate ones.
If the user tries to create create a FBO with separate depth/stencil
renderbuffers mark the FBO as unsupported.

15 years agoutil: set vbuf.max_index in draw_vertex_buffer()
Keith Whitwell [Fri, 27 Feb 2009 15:10:11 +0000 (15:10 +0000)]
util: set vbuf.max_index in draw_vertex_buffer()
(cherry picked from commit 1350f2efba5eeceebe0e711db6152c29e9889ce7)

15 years agosoftpipe: add dumping of post-tranfsormed vertices (disabled)
Keith Whitwell [Thu, 19 Feb 2009 14:46:23 +0000 (14:46 +0000)]
softpipe: add dumping of post-tranfsormed vertices (disabled)

15 years agomesa: Fix and re-enable sparc normal asm.
David Miller [Fri, 27 Feb 2009 10:38:40 +0000 (02:38 -0800)]
mesa: Fix and re-enable sparc normal asm.

Fix a bug reported in 2003 :-)

The output vector has 4 entries, not 3.

Unconditionally emit .register directives.

Signed-off-by: David S. Miller <davem@davemloft.net>
15 years agomesa: Fix Sparc cliptest asm code and re-enable.
David Miller [Fri, 27 Feb 2009 10:38:37 +0000 (02:38 -0800)]
mesa: Fix Sparc cliptest asm code and re-enable.

Stop using register %g7 since that is used by the "system" (ie. the
pthread implementation makes use of it).

Also, the projection vector can be NULL and we shouldn't try to access
it at all in _mesa_sparc_cliptest_points4_np().  ioquake3 would crash
due to this bug.

Finally, unconditionally emit the register directives and re-enable in
_mesa_init_all_sparc_transform_asm().

Signed-off-by: David S. Miller <davem@davemloft.net>
15 years agointel: Use flink for global buffer ids
Jakob Bornecrantz [Fri, 27 Feb 2009 02:27:31 +0000 (03:27 +0100)]
intel: Use flink for global buffer ids

Also fix minor drm api change

15 years agoegl: Fix for minor api change
Jakob Bornecrantz [Fri, 27 Feb 2009 02:25:48 +0000 (03:25 +0100)]
egl: Fix for minor api change

15 years agost/drm: Seperate get handle for global buffer ids
Jakob Bornecrantz [Fri, 27 Feb 2009 02:25:08 +0000 (03:25 +0100)]
st/drm: Seperate get handle for global buffer ids

15 years agomesa: Fix DEBUG_MATH build on sparc.
David S. Miller [Fri, 27 Feb 2009 01:59:04 +0000 (18:59 -0700)]
mesa: Fix DEBUG_MATH build on sparc.

Need to use '__asm__' instead of plain 'asm'.

math/m_debug_clip.c: In function ‘test_cliptest_function’:
math/m_debug_clip.c:253: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘asm’
math/m_debug_clip.c:253: warning: implicit declaration of function ‘asm’

Signed-off-by: David S. Miller <davem@davemloft.net>
15 years agodocs: add SPARC assembly updates
Brian Paul [Fri, 27 Feb 2009 01:37:26 +0000 (18:37 -0700)]
docs: add SPARC assembly updates

15 years agointel: no-op the intel_finish_render_texture() function
Brian Paul [Fri, 27 Feb 2009 01:42:00 +0000 (18:42 -0700)]
intel: no-op the intel_finish_render_texture() function

It doesn't have to do anything.  See comments for more details.

15 years agointel: check texture formats in intel_validate_framebuffer()
Brian Paul [Thu, 26 Feb 2009 23:51:50 +0000 (16:51 -0700)]
intel: check texture formats in intel_validate_framebuffer()

We can't render into any texture format; only certain formats.
Check that render-to-texture's format is renderable in the
intel_validate_framebuffer()

There seems to be a bug somewhere that causes rendering to rgb565 textures
to be corrupted so disallow that for now.  This will be revisted.

15 years agointel: updated comment, some debug code (disabled)
Brian Paul [Thu, 26 Feb 2009 23:44:42 +0000 (16:44 -0700)]
intel: updated comment, some debug code (disabled)

15 years agoi965: rename draw_regions -> color_regions
root [Thu, 26 Feb 2009 22:04:20 +0000 (15:04 -0700)]
i965: rename draw_regions -> color_regions

Be a little more specific about what these are.

15 years agodemos: add a fourth test case to VBO test for position/color in different VBOs
Brian Paul [Thu, 26 Feb 2009 21:51:41 +0000 (14:51 -0700)]
demos: add a fourth test case to VBO test for position/color in different VBOs

15 years agomesa: avoid extraneous calls to ctx->Driver.BindFramebuffer()
Brian Paul [Thu, 26 Feb 2009 21:49:24 +0000 (14:49 -0700)]
mesa: avoid extraneous calls to ctx->Driver.BindFramebuffer()

Only call this driver function when we really need to bind different buffers.

15 years agoi965: add missing init for region->width
Brian Paul [Thu, 26 Feb 2009 21:02:52 +0000 (14:02 -0700)]
i965: add missing init for region->width

This doesn't seem to really effect anything but seeing width=0 in drawing
regions was confusing.

15 years agomesa: replace old prog_instruction::Sampler field with Aux field
Brian Paul [Tue, 24 Feb 2009 00:50:55 +0000 (17:50 -0700)]
mesa: replace old prog_instruction::Sampler field with Aux field

The i965 driver needs an extra instruction field for color output information.
It was using the Sampler field for this.  Use the Aux field instead.  This
will probaby be revisited at some point...

15 years agoi965: whitespace/indentation fixes
Brian Paul [Mon, 23 Feb 2009 23:39:22 +0000 (16:39 -0700)]
i965: whitespace/indentation fixes

15 years agomesa: Resurrect SPARC asm code.
David S. Miller [Thu, 26 Feb 2009 13:35:15 +0000 (05:35 -0800)]
mesa: Resurrect SPARC asm code.

This rewrites the sparc GLAPI code so that it's PIC friendly and works
with all of the TLS/PTHREADS/64-bit/32-bit combinations properly.

As a result we can turn SPARC asm back on.  Currently it's only
enabled on Linux, as that's the only place where I can test this
stuff out.

For the moment the cliptest SPARC asm routines are disabled as they
are non-working.  The problem is that they use register %g7 as a
temporary which is where the threading libraries store the thread
pointer on SPARC.  I will fix that code up in a future change as it's
a pretty important routine to optimize.

Like x86 we do the runtime patch as a pthread once-invoked initializer
in init_glapi_relocs().

Unlike x86, however, our GLAPI stubs on SPARC are just two instruction
sequences that branch to a trampoline and put the GLAPI offset into a
register.  The trampoline is what we run-time patch.  The stubs thus
all look like:

glFoo:
ba __glapi_sparc_foo_stub
 sethi GLAPI_OFFSET(glFOO) * PTR_SIZE, %g3

This actually makes generate_entrypoint() a lot simpler on SPARC.  For
this case in generate_entrypoint() we generate stubs using a 'call'
instead of the 'ba' above to make sure it can reach.

In order to get a proper tail call going here, in the unpatched case,
we do several tricks.  To get the current PC, for example, we save the
return address register into a temporary, do a call, save the return
address register written by the call to another temporary, then
restore the original return address register value.  This is to
avoid having to allocate a stack frame.

This is necessary for PIC address formation.

This new GLAPI scheme lets us get rid of the ugly SPARC GLAPI hacks in
__glXInitialize() and one_time_init().

Signed-off-by: David S. Miller <davem@davemloft.net>
15 years agointel: Revert disable of accelerated Bitmap, which slipped in with spans stuff.
Eric Anholt [Thu, 26 Feb 2009 19:45:07 +0000 (11:45 -0800)]
intel: Revert disable of accelerated Bitmap, which slipped in with spans stuff.

15 years agoFix "cast to pointer from integer of different size"
Tomas Carnecky [Thu, 26 Feb 2009 06:31:35 +0000 (07:31 +0100)]
Fix "cast to pointer from integer of different size"

The script generates code like:
   pixels = (const GLvoid *) (ptr_is_null != 0) ? NULL : (pc + 80);
which causes the above mentioned warning. Add parenthesis around the
whole expression to fix it.

Signed-off-by: Tomas Carnecky <tom@dbservice.com>
15 years agoi965: fix for RHW workaround
Xiang, Haihao [Thu, 26 Feb 2009 09:31:01 +0000 (17:31 +0800)]
i965: fix for RHW workaround

It is possible that an object whose vertices all are outside of a
view plane is passed to clip thread due to the RHW workaround. This
object should be rejected by clip thread. Fix bug #19879

15 years agointel: Disable creating DRI2 FBconfigs with depth size != color size.
Eric Anholt [Thu, 26 Feb 2009 08:18:46 +0000 (00:18 -0800)]
intel: Disable creating DRI2 FBconfigs with depth size != color size.

While it's a nice idea to be able to allow clients to choose a smaller
(or bigger for 16bpp screens!) depth size, right now DRI2 hands back a buffer
with a size that matches the drawable, rather than being based off of the
visual.  This led to problems in readback as parts of the driver disagreed
on what format the depth buffer was really in.

Fixes the remainder of bug #19447.

15 years agointel: Add span code for z24 without stencil.
Eric Anholt [Thu, 26 Feb 2009 07:58:38 +0000 (23:58 -0800)]
intel: Add span code for z24 without stencil.

It seems that in this case the Mesa code is handing us x8z24 values instead
of z24s8 values, so we need to not do the rotation.  Fixes half of OGLconform
depthrange.c.

Bug #19447.

15 years agointel: make template wrappers for the spans templates.
Eric Anholt [Thu, 26 Feb 2009 07:54:40 +0000 (23:54 -0800)]
intel: make template wrappers for the spans templates.

This is insanity, but so is copying the same blocks containing the actual
interesting code in the file three times each for the different tile formats.

15 years agointel: Fix up x8r8g8b8 renderbuffer format so that alpha=1 spans code happens.
Eric Anholt [Thu, 26 Feb 2009 06:54:51 +0000 (22:54 -0800)]
intel: Fix up x8r8g8b8 renderbuffer format so that alpha=1 spans code happens.

I was lured into a false sense of security by the fact that the spans code was
already there, and a bunch of tests didn't catch the problem.  oglconform's
mask.c did, though.

Bug #19970.

15 years agoautoconf: Fixup EGL build
Dan Nicholson [Thu, 26 Feb 2009 01:45:34 +0000 (17:45 -0800)]
autoconf: Fixup EGL build

This gets the needed libraries pulled in for libEGL for autoconf.

15 years agoi965: Rename CMD_CONST_BUFFER_STATE to the CS_URB_STATE used in the docs.
Eric Anholt [Wed, 25 Feb 2009 20:41:25 +0000 (12:41 -0800)]
i965: Rename CMD_CONST_BUFFER_STATE to the CS_URB_STATE used in the docs.

15 years agoR300: Add support for RS600 chips
Alex Deucher [Wed, 25 Feb 2009 22:30:56 +0000 (17:30 -0500)]
R300: Add support for RS600 chips

15 years agonouveau: nv04-nv40 texture transfer.
Younes Manton [Wed, 25 Feb 2009 17:55:26 +0000 (12:55 -0500)]
nouveau: nv04-nv40 texture transfer.

15 years agog3dvl: Update winsys stuff.
Younes Manton [Fri, 20 Feb 2009 19:51:31 +0000 (14:51 -0500)]
g3dvl: Update winsys stuff.

15 years agoegl: remove compiler flags from CFLAGS
Brian Paul [Wed, 25 Feb 2009 15:45:08 +0000 (08:45 -0700)]
egl: remove compiler flags from CFLAGS

The incoming CFLAGS already has -fPIC and -Wall.  Don't want -g here either.

15 years agoegl: use new EGL_LIB_DEPS to pass library dependencies to mklib when building libEGL
Brian Paul [Wed, 25 Feb 2009 15:41:13 +0000 (08:41 -0700)]
egl: use new EGL_LIB_DEPS to pass library dependencies to mklib when building libEGL

EGL_LIB_DEPS may need fine-tuning for some platforms.  It's only defined
in configs/default ATM.

15 years agoegl: add comment/reminder to fix the CFLAGS in this Makefile
Brian Paul [Wed, 25 Feb 2009 14:58:17 +0000 (07:58 -0700)]
egl: add comment/reminder to fix the CFLAGS in this Makefile

15 years agogallium: Add support for BSD operating systems, tested with FreeBSD
Benjamin Close [Wed, 25 Feb 2009 04:51:10 +0000 (20:51 -0800)]
gallium: Add support for BSD operating systems, tested with FreeBSD

BSD supports pipe in the same way as linux hence options which
are safe for linux are also safe for BSD. Define PIPE_OS_BSD in
include/pipe/p_config.h and adjust the defines to make use of it.

Also define MAP_ANONYMOUS for BSD systems which use MAP_ANON

Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
15 years agogallium: Fix build when exiting CFLAGS contains a path with different gl.h
Benjamin Close [Wed, 25 Feb 2009 04:51:11 +0000 (20:51 -0800)]
gallium: Fix build when exiting CFLAGS contains a path with different gl.h

If a path is in CFLAGS when building and that path contains gl.h
then the wrong gl.h is used when building. This can lead to very
confusing errors. The solution is rather than postpend the CFLAGS
we prepend the paths as expected allowing compilation to occur
as intended

Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
15 years agoegl: Use -dlopen rather than -dl which is non portable
Benjamin Close [Wed, 25 Feb 2009 04:51:12 +0000 (20:51 -0800)]
egl: Use -dlopen rather than -dl which is non portable

Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
15 years agoegl: Allow compilation to succeed with FreeBSD
Benjamin Close [Wed, 25 Feb 2009 04:51:13 +0000 (20:51 -0800)]
egl: Allow compilation to succeed with FreeBSD

Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
15 years agosoftpipe: minor code simplification for face/zslice offset calculation
Brian Paul [Wed, 25 Feb 2009 04:01:07 +0000 (21:01 -0700)]
softpipe: minor code simplification for face/zslice offset calculation

15 years agocell: overhaul cell teximage code
Brian Paul [Wed, 25 Feb 2009 03:58:46 +0000 (20:58 -0700)]
cell: overhaul cell teximage code

Updated to use the new pipe_transfer functions, etc.
Texturing is working again.  Though there's some bugs in mipmap texturing
but I believe those predate the pipe_transfer changes.

15 years agocell: don't need tex transfer for drawing surfaces
Brian Paul [Wed, 25 Feb 2009 03:10:36 +0000 (20:10 -0700)]
cell: don't need tex transfer for drawing surfaces

15 years agomesa: Build DRI by default on Linux/sparc
David S. Miller [Wed, 25 Feb 2009 03:06:05 +0000 (20:06 -0700)]
mesa: Build DRI by default on Linux/sparc

Signed-off-by: David S. Miller <davem@davemloft.net>
15 years agointel: Adopt to the new drm_api.h
Jakob Bornecrantz [Wed, 25 Feb 2009 00:54:03 +0000 (01:54 +0100)]
intel: Adopt to the new drm_api.h

15 years agoi915: Enable winsys to get buffer from texture
Jakob Bornecrantz [Tue, 24 Feb 2009 22:22:34 +0000 (23:22 +0100)]
i915: Enable winsys to get buffer from texture

15 years agost/drm: Bring drm_api.h up to date with latest changes
Jakob Bornecrantz [Wed, 25 Feb 2009 00:52:38 +0000 (01:52 +0100)]
st/drm: Bring drm_api.h up to date with latest changes

15 years agoi915: Fix some warnings
Jakob Bornecrantz [Tue, 24 Feb 2009 22:58:11 +0000 (23:58 +0100)]
i915: Fix some warnings

15 years agoi915: Clean up i915_winsys.h a bit
Jakob Bornecrantz [Tue, 24 Feb 2009 22:55:03 +0000 (23:55 +0100)]
i915: Clean up i915_winsys.h a bit

15 years agomesa: fix merge conflict (in comment)
Brian Paul [Wed, 25 Feb 2009 00:53:39 +0000 (17:53 -0700)]
mesa: fix merge conflict (in comment)

15 years agomesa: added GLES 1/2 headers to tarball file list
Brian Paul [Wed, 25 Feb 2009 00:21:45 +0000 (17:21 -0700)]
mesa: added GLES 1/2 headers to tarball file list

15 years agomesa: add EGL headers to tarball list
Brian Paul [Tue, 24 Feb 2009 23:17:44 +0000 (16:17 -0700)]
mesa: add EGL headers to tarball list

15 years agomesa: add gallium and egl files to tarball list
Brian Paul [Tue, 24 Feb 2009 22:00:14 +0000 (15:00 -0700)]
mesa: add gallium and egl files to tarball list

15 years agoglsl: silence warning
Brian Paul [Tue, 24 Feb 2009 21:59:54 +0000 (14:59 -0700)]
glsl: silence warning

15 years agomesa: use quotes for #include
Brian Paul [Tue, 24 Feb 2009 21:30:51 +0000 (14:30 -0700)]
mesa: use quotes for #include

15 years agomesa: remove removed VMS files from Makefile
Brian Paul [Tue, 24 Feb 2009 21:29:05 +0000 (14:29 -0700)]
mesa: remove removed VMS files from Makefile

I'll help Jouk restore these someday if he's still maintaining VMS support...

15 years agomesa: s/sources/sources.mak/ in Makefile
Brian Paul [Tue, 24 Feb 2009 21:27:43 +0000 (14:27 -0700)]
mesa: s/sources/sources.mak/ in Makefile

15 years agotrivial: Add tri-viewport
Jakob Bornecrantz [Sat, 21 Feb 2009 10:58:48 +0000 (11:58 +0100)]
trivial: Add tri-viewport

15 years agotrivial: Fix indentation in tri
Jakob Bornecrantz [Sat, 21 Feb 2009 10:57:50 +0000 (11:57 +0100)]
trivial: Fix indentation in tri

15 years agopipebuffer: Allow asymmetric guard sizes for under/overflow detection.
José Fonseca [Tue, 24 Feb 2009 15:49:21 +0000 (15:49 +0000)]
pipebuffer: Allow asymmetric guard sizes for under/overflow detection.

15 years agoutil: Don't use 0-sized arrays.
José Fonseca [Tue, 24 Feb 2009 15:44:09 +0000 (15:44 +0000)]
util: Don't use 0-sized arrays.

Not supported by MSVC.

15 years agosoftpipe: minor code movement in softpipe_get_tex_transfer()
Brian Paul [Tue, 24 Feb 2009 15:33:50 +0000 (08:33 -0700)]
softpipe: minor code movement in softpipe_get_tex_transfer()

15 years agocell: added null ptr check in xm_flush_frontbuffer()
Brian Paul [Tue, 24 Feb 2009 03:23:00 +0000 (20:23 -0700)]
cell: added null ptr check in xm_flush_frontbuffer()

15 years agodemos: add some fflushes for windows
Keith Whitwell [Tue, 24 Feb 2009 12:02:24 +0000 (12:02 +0000)]
demos: add some fflushes for windows

15 years agost/wgl: silence some debug
Keith Whitwell [Tue, 24 Feb 2009 12:00:47 +0000 (12:00 +0000)]
st/wgl: silence some debug

15 years agomesa/st: support l8 as well as i8 in bitmap code
Keith Whitwell [Tue, 24 Feb 2009 11:58:58 +0000 (11:58 +0000)]
mesa/st: support l8 as well as i8 in bitmap code

Also don't send the partial program fragment down to hardware -- the
program will never be used in that form.

15 years agogallium: Add pipe_buffer_write/read inlines.
José Fonseca [Tue, 24 Feb 2009 11:30:25 +0000 (11:30 +0000)]
gallium: Add pipe_buffer_write/read inlines.

Saves code, and will simplify future interface changes.

15 years agomesa: List new source file in SConscript.
José Fonseca [Tue, 24 Feb 2009 11:29:33 +0000 (11:29 +0000)]
mesa: List new source file in SConscript.

15 years agopipebuffer: Remove unused var.
José Fonseca [Tue, 24 Feb 2009 11:22:24 +0000 (11:22 +0000)]
pipebuffer: Remove unused var.

15 years agoglsl: yet another swizzled expression fix
Brian Paul [Tue, 24 Feb 2009 00:43:43 +0000 (17:43 -0700)]
glsl: yet another swizzled expression fix

This fixes swizzled conditional expressions such "(b ? p : q).x"