profile/ivi/mesa.git
13 years agocso: handle depth clamp
Marek Olšák [Wed, 21 Jul 2010 07:14:21 +0000 (09:14 +0200)]
cso: handle depth clamp

13 years agogallium: add depth clamp to the interface
Marek Olšák [Wed, 21 Jul 2010 07:13:53 +0000 (09:13 +0200)]
gallium: add depth clamp to the interface

13 years agoAdd missing initialization of inOutFlags pointer.
Carl Worth [Wed, 21 Jul 2010 20:26:26 +0000 (13:26 -0700)]
Add missing initialization of inOutFlags pointer.

This quiets a compiler warning, (and ensures a segmentation fault rather
than memory corruption if this variable is written through before being
initialized elsewhere).

13 years agoMakefiles: Don't complain if depend file to be included doesn't exist.
Carl Worth [Tue, 20 Jul 2010 22:59:56 +0000 (15:59 -0700)]
Makefiles: Don't complain if depend file to be included doesn't exist.

While bootstrapping the dependencies, make will see the "include depend"
directive before the depend file has been created. To avoid a spurious
warning in this case we use "-include" instead, (which differs precisely
in the fact that it will not emit a diagnostic if the named file does
not exist).

13 years agoi965: Remove an unused variable.
Carl Worth [Wed, 21 Jul 2010 20:17:22 +0000 (13:17 -0700)]
i965: Remove an unused variable.

To quiet a compiler warning.

13 years agodri2: Remove an unused variable.
Carl Worth [Wed, 21 Jul 2010 20:17:05 +0000 (13:17 -0700)]
dri2: Remove an unused variable.

To quiet a compiler warning.

13 years agoRegenerate program/lex.yy.c
Carl Worth [Wed, 21 Jul 2010 20:13:46 +0000 (13:13 -0700)]
Regenerate program/lex.yy.c

Based on the two recent changes to program_lexer.l.

13 years agoAvoid more warnings in flex-generated code.
Carl Worth [Wed, 21 Jul 2010 20:11:46 +0000 (13:11 -0700)]
Avoid more warnings in flex-generated code.

This avoids two "function defined but not used" warnings. For the yyinput
function we define YY_NO_INPUT which tells flex to simply not generate this
function.

For unput, we add a call to this function, but inside a while(0) so
that it will quiet the warning without actually changing any
functionality.

13 years agoAvoid warnings in flex-generated code.
Carl Worth [Wed, 21 Jul 2010 19:49:01 +0000 (12:49 -0700)]
Avoid warnings in flex-generated code.

Add declarations for two functions generated in the flex ouput. It
would be nicer if flex simply declared these generated functions as
static, but for now we can at least avoid the warning this way.

13 years agodraw: tweak aa line width threshold and sampling
Brian Paul [Wed, 21 Jul 2010 17:37:13 +0000 (11:37 -0600)]
draw: tweak aa line width threshold and sampling

Set sampler max_lod to avoid sampling the 1x1 and 2x2 mipmap levels.

Fixes piglit line-aa-width test, fd.o bug 29160.

13 years agonouveau/nvfx: Add new PIPE_CAP values
Patrice Mandin [Wed, 21 Jul 2010 17:28:45 +0000 (19:28 +0200)]
nouveau/nvfx: Add new PIPE_CAP values

Signed-off-by: Patrice Mandin <patmandin@gmail.com>
13 years agogallivm: replace has_indirect_addressing field with indirect_files field
Brian Paul [Wed, 21 Jul 2010 15:59:23 +0000 (09:59 -0600)]
gallivm: replace has_indirect_addressing field with indirect_files field

Instead of one big boolean indicating indirect addressing, use a
bitfield indicating which register files are accessed with indirect
addressing.

Most shaders that use indirect addressing only use it to access the
constant buffer.  So no need to use an array for temporary registers
in this case.

13 years agotgsi: added tgsi_shader_info::indirect_files field
Brian Paul [Wed, 21 Jul 2010 15:51:11 +0000 (09:51 -0600)]
tgsi: added tgsi_shader_info::indirect_files field

Indicates which register files are accessed with indirect addressing.

13 years agogallivm: refactor code into get_indirect_offsets() function
Brian Paul [Wed, 21 Jul 2010 15:42:11 +0000 (09:42 -0600)]
gallivm: refactor code into get_indirect_offsets() function

13 years agogallivm: added comment
Brian Paul [Wed, 21 Jul 2010 15:17:47 +0000 (09:17 -0600)]
gallivm: added comment

13 years agogallivm: remove extraneous braces
Brian Paul [Wed, 21 Jul 2010 15:16:02 +0000 (09:16 -0600)]
gallivm: remove extraneous braces

13 years agogallivm: no longer do indirect addressing in get_temp_ptr()
Brian Paul [Wed, 21 Jul 2010 15:15:30 +0000 (09:15 -0600)]
gallivm: no longer do indirect addressing in get_temp_ptr()

13 years agogallivm: implement correct indirect addressing of temp registers
Brian Paul [Wed, 21 Jul 2010 15:10:49 +0000 (09:10 -0600)]
gallivm: implement correct indirect addressing of temp registers

As with indexing the const buffer, the ADDR reg may have totally
different values for each element.  Need to use a gather operation.

13 years agogallivm: re-org, comments for get_temp_ptr()
Brian Paul [Wed, 21 Jul 2010 14:18:56 +0000 (08:18 -0600)]
gallivm: re-org, comments for get_temp_ptr()

13 years agodraw: whitespace clean-up
Brian Paul [Wed, 21 Jul 2010 14:13:02 +0000 (08:13 -0600)]
draw: whitespace clean-up

13 years agogallium: remove pointless bitfield restrction in pipe_vertex_element
Keith Whitwell [Wed, 21 Jul 2010 14:39:09 +0000 (15:39 +0100)]
gallium: remove pointless bitfield restrction in pipe_vertex_element

This used to be a somewhat packed struct, but no longer.  Remove the
last remaining bitfield tag.

14 years agogallivm: rename a var to avoid compiler warnings
Brian Paul [Wed, 21 Jul 2010 14:08:12 +0000 (08:08 -0600)]
gallivm: rename a var to avoid compiler warnings

14 years agogallivm: fix indirect addressing of constant buffer
Brian Paul [Wed, 21 Jul 2010 00:48:53 +0000 (18:48 -0600)]
gallivm: fix indirect addressing of constant buffer

The previous code assumed that all elements of the address register
were the same.  But it can vary from pixel to pixel or vertex to
vertex so we must use a gather operation when dynamically indexing
the constant buffer.

Still need to fix this for the temporary register file...

14 years agogallivm: added lp_build_const_int32() helper
Brian Paul [Wed, 21 Jul 2010 00:45:45 +0000 (18:45 -0600)]
gallivm: added lp_build_const_int32() helper

14 years agoradeon: Remove unnecessary header.
Vinson Lee [Tue, 20 Jul 2010 21:18:42 +0000 (14:18 -0700)]
radeon: Remove unnecessary header.

14 years agor600g: split trans unit computation
Jerome Glisse [Tue, 20 Jul 2010 19:04:55 +0000 (15:04 -0400)]
r600g: split trans unit computation

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
14 years agost/mesa: implement and advertise GL_ARB_draw_elements_base_vertex
Marek Olšák [Sat, 5 Jun 2010 17:32:29 +0000 (19:32 +0200)]
st/mesa: implement and advertise GL_ARB_draw_elements_base_vertex

Signed-off-by: Brian Paul <brianp@vmware.com>
14 years agodraw: correctly handle max_index=0xffffffff case in vcache code
Brian Paul [Tue, 20 Jul 2010 17:46:43 +0000 (11:46 -0600)]
draw: correctly handle max_index=0xffffffff case in vcache code

If max_index=0xffffffff and elt_bias > 0 the test for
elt_bias + max_index >= DRAW_PIPE_MAX_VERTICES
was wrong.  Check earlier if max_index=0xffffffff and do the
"fail" case.

This fixes the piglit draw-elements-base-vertex test (and probably
some other things).

14 years agost/mesa: implement depth texture modes
Marek Olšák [Mon, 19 Jul 2010 18:46:15 +0000 (20:46 +0200)]
st/mesa: implement depth texture modes

14 years agomesa: call ctx->Driver.ChooseTextureFormat() only when necessary.
Brian Paul [Tue, 20 Jul 2010 14:40:19 +0000 (08:40 -0600)]
mesa: call ctx->Driver.ChooseTextureFormat() only when necessary.

When defining mipmap level 'L' and level L-1 exists and the new level's
internalFormat matches level L-1's internalFormat, then use the same hw
format.  Otherwise, do the regular ctx->Driver.ChooseTextureFormat() call.

This avoids a problem where we end up choosing different hw formats for
different mipmap levels depending on how the levels are defined (glTexImage
vs. glCopyTexImage vs. glGenerateMipmap, etc).

The root problem is the ChooseTextureFormat() implementation in some
drivers uses the user's glTexImage format/type parameters in the choosing
heuristic.  Later mipmap levels might be generated with different calls
(ex: glCopyTexImage()) so we don't always have format/type info and the
driver may choose a different format.

For more background info see the July 2010 mesa-dev thread "Bug in
_mesa_meta_GenerateMipmap"

14 years agograw/tests: pass -e option to test draw_elements_instanced()
Brian Paul [Tue, 20 Jul 2010 14:39:30 +0000 (08:39 -0600)]
graw/tests: pass -e option to test draw_elements_instanced()

14 years agosoftpipe: Support non-depth-stencil formats in sp_tile_cache_flush_clear().
Michal Krol [Tue, 20 Jul 2010 13:00:28 +0000 (15:00 +0200)]
softpipe: Support non-depth-stencil formats in sp_tile_cache_flush_clear().

14 years agoglx: #ifdef DRI specific prototype
Kristian Høgsberg [Tue, 20 Jul 2010 11:43:50 +0000 (07:43 -0400)]
glx: #ifdef DRI specific prototype

https://bugs.freedesktop.org/show_bug.cgi?id=29162

14 years agoglx/dri2: Fix dri2CopySubBuffer() again.
Michel Dänzer [Tue, 20 Jul 2010 10:21:17 +0000 (12:21 +0200)]
glx/dri2: Fix dri2CopySubBuffer() again.

Only refresh the fake front buffer if there is one, and only destroy the region
once.

Fixes X11 protocol errors reported by 'mcgreg' on IRC.

14 years agoutil: mempool: initialize last block's magic number in a page
Marek Olšák [Mon, 19 Jul 2010 21:26:17 +0000 (23:26 +0200)]
util: mempool: initialize last block's magic number in a page

14 years agost/egl: Fixes for recent GLX cleanup.
Chia-I Wu [Tue, 20 Jul 2010 03:49:59 +0000 (11:49 +0800)]
st/egl: Fixes for recent GLX cleanup.

Mainly, the type of __GLXdisplayPrivateRec::screenConfigs has changed
from "__GLXscreenConfigs *" to "__GLXscreenConfigs **".

14 years agost/dri: Remove driFrameTrackingExtension.
Chia-I Wu [Tue, 20 Jul 2010 04:35:47 +0000 (12:35 +0800)]
st/dri: Remove driFrameTrackingExtension.

The extension has been removed in
22266c391fbe17603b15a83d4ccf5fa9455ccf8d.

14 years agoglx: Move DRI CopySubBuffer extension to DRI1 code
Kristian Høgsberg [Tue, 20 Jul 2010 02:40:22 +0000 (22:40 -0400)]
glx: Move DRI CopySubBuffer extension to DRI1 code

We do this in the X server for DRI2.

14 years agoglx: Move driver_configs to DRI screen privates
Kristian Høgsberg [Tue, 20 Jul 2010 02:12:22 +0000 (22:12 -0400)]
glx: Move driver_configs to DRI screen privates

14 years agoglx: Move drawHash to display private
Kristian Høgsberg [Tue, 20 Jul 2010 01:15:50 +0000 (21:15 -0400)]
glx: Move drawHash to display private

The XIDs are display wide so the natural location of the hash is here.
This way we don't have to lookup in each of the screen hashes.

14 years agoglx: Don't use __glXInitialize() when we might be holding __glXLock()
Kristian Høgsberg [Tue, 20 Jul 2010 01:00:09 +0000 (21:00 -0400)]
glx: Don't use __glXInitialize() when we might be holding __glXLock()

14 years agoglx: Workaround mismatch in signedness between extensions and protocol
Kristian Høgsberg [Tue, 20 Jul 2010 00:01:59 +0000 (20:01 -0400)]
glx: Workaround mismatch in signedness between extensions and protocol

The DRI2 protocol for ust, msc and sbc are unsigned but the extensions
talk about int64_t.  Do a little dance to make the compiler shut up.

14 years agoglx: Move __DRIdrawable pointers to DRI drawable privates
Kristian Høgsberg [Mon, 19 Jul 2010 22:11:03 +0000 (18:11 -0400)]
glx: Move __DRIdrawable pointers to DRI drawable privates

14 years agoglx: Remove support for MESA_swap_frame_usage
Kristian Høgsberg [Mon, 19 Jul 2010 21:15:42 +0000 (17:15 -0400)]
glx: Remove support for MESA_swap_frame_usage

The extension never worked, the implementation returns GLX_BAD_CONTEXT
when enabling the frame tracking.

14 years agoglx: Move __driScreen into the dri screen privates
Kristian Høgsberg [Mon, 19 Jul 2010 20:45:23 +0000 (16:45 -0400)]
glx: Move __driScreen into the dri screen privates

14 years agoglx: Move DRI1 specific extensions and code to DRI1 screen private
Kristian Høgsberg [Mon, 19 Jul 2010 20:39:53 +0000 (16:39 -0400)]
glx: Move DRI1 specific extensions and code to DRI1 screen private

14 years agoglx: Move DRI2 extensions to DRI2 screen private
Kristian Høgsberg [Mon, 19 Jul 2010 19:35:48 +0000 (15:35 -0400)]
glx: Move DRI2 extensions to DRI2 screen private

14 years agoglx: Drop support for GLX_MESA_allocate_memory
Kristian Høgsberg [Mon, 19 Jul 2010 19:15:15 +0000 (15:15 -0400)]
glx: Drop support for GLX_MESA_allocate_memory

Only r200 implemented it.

14 years agoglx: Add screen privates for dri drivers and moved some fields there
Kristian Høgsberg [Mon, 19 Jul 2010 18:57:59 +0000 (14:57 -0400)]
glx: Add screen privates for dri drivers and moved some fields there

GLXscreenConfigs is badly named and a dumping ground for a lot of stuff.
This patch creates private screen structs for the dri drivers and moves
some of their fields over there.

14 years agoglx: Rename various DRI structs away from obnoxious __GLXfooRec convention
Kristian Høgsberg [Mon, 19 Jul 2010 14:51:09 +0000 (10:51 -0400)]
glx: Rename various DRI structs away from obnoxious __GLXfooRec convention

Enough is enough.

14 years agoglx: Factor out common code from dri2WaitGL() and dri2WaitX()
Kristian Høgsberg [Mon, 19 Jul 2010 14:32:02 +0000 (10:32 -0400)]
glx: Factor out common code from dri2WaitGL() and dri2WaitX()

14 years agoglx: Dont use dri2WaitX() to update fake front
Kristian Høgsberg [Mon, 19 Jul 2010 14:19:22 +0000 (10:19 -0400)]
glx: Dont use dri2WaitX() to update fake front

This saves a superfluous flush and a create/destryo region.

14 years agoi965: Mostly fix glsl-max-varyings.
Eric Anholt [Tue, 20 Jul 2010 00:22:20 +0000 (17:22 -0700)]
i965: Mostly fix glsl-max-varyings.

There was confusion on both the size of message we can send, and on
what the URB destination offset means.

The remaining problems appear to be due to spilling of regs in the
fragment shader being broken.

14 years agoi965: Clean up message register setup in emit_vertex_write().
Eric Anholt [Tue, 20 Jul 2010 00:02:52 +0000 (17:02 -0700)]
i965: Clean up message register setup in emit_vertex_write().

14 years agoi965: Reduce repeated calculation of the attribute-offset-in-VUE.
Eric Anholt [Mon, 19 Jul 2010 23:44:38 +0000 (16:44 -0700)]
i965: Reduce repeated calculation of the attribute-offset-in-VUE.

This cleans up some chipset dependency sprinkled around, and fixes a
potential overflow of the attribute offset array for many vertex
results.

14 years agoi965: Clarify the nr_regs calculation in brw_clip.c
Eric Anholt [Mon, 19 Jul 2010 23:11:19 +0000 (16:11 -0700)]
i965: Clarify the nr_regs calculation in brw_clip.c

14 years agoi965: Don't set up VUE space for the disabled user clip distances on gen6.
Eric Anholt [Mon, 19 Jul 2010 22:54:15 +0000 (15:54 -0700)]
i965: Don't set up VUE space for the disabled user clip distances on gen6.

14 years agodraw: fix incorrect instancing divisor in LLVM code
Brian Paul [Tue, 20 Jul 2010 00:29:12 +0000 (18:29 -0600)]
draw: fix incorrect instancing divisor in LLVM code

14 years agomesa: remove restart.c from build
Brian Paul [Mon, 19 Jul 2010 21:28:53 +0000 (15:28 -0600)]
mesa: remove restart.c from build

14 years agor300g: fix possible crash in destroy_context
Marek Olšák [Mon, 19 Jul 2010 18:47:30 +0000 (20:47 +0200)]
r300g: fix possible crash in destroy_context

The problem is destroy_context is almost NEVER called.
The only test for destroy_context I know is compiz.

Reported by Vinson Lee.

FDO bug #29150.

14 years agoutil: remove the dummy field in mempool
Marek Olšák [Mon, 19 Jul 2010 16:08:53 +0000 (18:08 +0200)]
util: remove the dummy field in mempool

It should allocate less memory now.

14 years agoscons: Fix Mac OS X SCons build on 32-bit CPUs.
Vinson Lee [Mon, 19 Jul 2010 18:31:44 +0000 (11:31 -0700)]
scons: Fix Mac OS X SCons build on 32-bit CPUs.

The Mac OS X SCons build failed on 32-bit CPUs starting with commit
2f6d47a7c8d6e69e5154de44115aab9ba35a41d2 during linking of graw-null.
The build succeeds though on a 64-bit CPU. See FDO bug 29117.

This was the compiler error.
scons: building associated VariantDir targets: build/darwin-x86-debug
  Linking build/darwin-x86-debug/gallium/targets/graw-null/libgraw.dylib ...
Undefined symbols:
  "_lp_swizzled_cbuf", referenced from:
      _lp_swizzled_cbuf$non_lazy_ptr in libllvmpipe.a(lp_rast.os)
      _lp_swizzled_cbuf$non_lazy_ptr in libllvmpipe.a(lp_rast_tri.os)
     (maybe you meant: _lp_swizzled_cbuf$non_lazy_ptr)
  "_lp_dummy_tile", referenced from:
      _lp_dummy_tile$non_lazy_ptr in libllvmpipe.a(lp_rast.os)
      _lp_dummy_tile$non_lazy_ptr in libllvmpipe.a(lp_rast_tri.os)
      _lp_dummy_tile$non_lazy_ptr in libllvmpipe.a(lp_setup.os)
     (maybe you meant: _lp_dummy_tile$non_lazy_ptr)

The patch adds -fno-common to all Mac OS X builds to work around this issue.

14 years agoutil: add dummy field to empty structure types
Brian Paul [Mon, 19 Jul 2010 16:50:08 +0000 (10:50 -0600)]
util: add dummy field to empty structure types

Empty structure types aren't allowed with MSVC.
I haven't tested this change.  Hope I haven't broken it...

14 years agor300g: fix typo
Marek Olšák [Mon, 19 Jul 2010 15:33:40 +0000 (17:33 +0200)]
r300g: fix typo

14 years agor300g: use memory pools for buffer_create and get_transfer
Marek Olšák [Mon, 19 Jul 2010 12:31:25 +0000 (14:31 +0200)]
r300g: use memory pools for buffer_create and get_transfer

The improvement in Tremulous: 68.9 fps -> 71.1 fps.

14 years agoutil: add a memory pool for equally sized memory allocations
Marek Olšák [Mon, 19 Jul 2010 09:04:30 +0000 (11:04 +0200)]
util: add a memory pool for equally sized memory allocations

malloc/free are in O(1).

14 years agost/mesa: fix FRAMEBUFFER_UNSUPPORTED with the D24S8 format
Marek Olšák [Sat, 17 Jul 2010 13:55:24 +0000 (15:55 +0200)]
st/mesa: fix FRAMEBUFFER_UNSUPPORTED with the D24S8 format

Fixes FDO bug #29116.

NOTE: this is a candidate for the 7.8 branch

14 years agoglx: Fix drawable lookup in DRI2 event handler
Kristian Høgsberg [Mon, 19 Jul 2010 13:37:07 +0000 (09:37 -0400)]
glx: Fix drawable lookup in DRI2 event handler

DRI2 events are sent to the X drawable ID used to create the DRI2 drawable,
not the GLX drawable ID.  So when an event comes in, we need to look up
the __GLXDRIdrawable by its X drawable ID, which needs a new hash table.

14 years agor300g: u_upload optimisation
Dave Airlie [Sun, 18 Jul 2010 08:47:08 +0000 (18:47 +1000)]
r300g: u_upload optimisation

fix vb/ib uploads

14 years agogallium/st/dri2: add dri2 vblank query extension support
Sven Arvidsson [Sun, 18 Jul 2010 09:17:14 +0000 (19:17 +1000)]
gallium/st/dri2: add dri2 vblank query extension support

from bugzilla:
https://bugs.freedesktop.org/show_bug.cgi?id=28771

Signed-off-by: Dave Airlie <airlied@redhat.com>
14 years agollvmpipe: Remove dead initialization.
Vinson Lee [Sun, 18 Jul 2010 08:14:36 +0000 (01:14 -0700)]
llvmpipe: Remove dead initialization.

14 years agor300g: final fix for r3xx constant buffer emission
Marek Olšák [Sat, 17 Jul 2010 13:35:03 +0000 (15:35 +0200)]
r300g: final fix for r3xx constant buffer emission

14 years agor300g: fix typo in r3xx constant buffer emission
Marek Olšák [Sat, 17 Jul 2010 12:40:41 +0000 (14:40 +0200)]
r300g: fix typo in r3xx constant buffer emission

Ooops.

14 years agor300g: fix constant buffer emission on r3xx
Marek Olšák [Sat, 17 Jul 2010 11:37:14 +0000 (13:37 +0200)]
r300g: fix constant buffer emission on r3xx

FDO bug #29128.

14 years agollvmpipe: Remove unused variable in lp_test_sincos.
Vinson Lee [Sat, 17 Jul 2010 07:35:10 +0000 (00:35 -0700)]
llvmpipe: Remove unused variable in lp_test_sincos.

14 years agonv50: s/__func__/__FUNCTION__/
Vinson Lee [Sat, 17 Jul 2010 01:41:32 +0000 (18:41 -0700)]
nv50: s/__func__/__FUNCTION__/

14 years agonouveau: s/__func__/__FUNCTION__/
Vinson Lee [Sat, 17 Jul 2010 01:14:11 +0000 (18:14 -0700)]
nouveau: s/__func__/__FUNCTION__/

14 years agonouveau: s/snprintf/util_snprintf/
Vinson Lee [Sat, 17 Jul 2010 01:03:03 +0000 (18:03 -0700)]
nouveau: s/snprintf/util_snprintf/

14 years agor300g: Remove unnecessary header.
Vinson Lee [Sat, 17 Jul 2010 00:55:57 +0000 (17:55 -0700)]
r300g: Remove unnecessary header.

14 years agonouveau: s/inline/INLINE/
Vinson Lee [Sat, 17 Jul 2010 00:49:18 +0000 (17:49 -0700)]
nouveau: s/inline/INLINE/

14 years agoglut: Remove duplicate symbol definition.
José Fonseca [Fri, 16 Jul 2010 20:48:36 +0000 (21:48 +0100)]
glut: Remove duplicate symbol definition.

14 years agoscons: Make PIPE_ALIGN_VAR() of static/global vars work on MinGW.
José Fonseca [Fri, 16 Jul 2010 20:26:43 +0000 (21:26 +0100)]
scons: Make PIPE_ALIGN_VAR() of static/global vars work on MinGW.

Workaround http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216

14 years agoscons: Fix Cygwin build.
Vinson Lee [Fri, 16 Jul 2010 19:34:22 +0000 (12:34 -0700)]
scons: Fix Cygwin build.

The Cygwin SCons build needed several file names to be fully qualified.

14 years agor300g: inline winsys_buffer_destroy
Marek Olšák [Fri, 16 Jul 2010 10:54:11 +0000 (12:54 +0200)]
r300g: inline winsys_buffer_destroy

14 years agor300g: do not make copies of constant buffers, emit them directly
Marek Olšák [Fri, 16 Jul 2010 10:53:40 +0000 (12:53 +0200)]
r300g: do not make copies of constant buffers, emit them directly

14 years agodraw: updated debug/dump code
Brian Paul [Fri, 16 Jul 2010 17:10:25 +0000 (11:10 -0600)]
draw: updated debug/dump code

14 years agodraw: added array element debug / bounds checking code (disabled)
Brian Paul [Fri, 16 Jul 2010 17:09:17 +0000 (11:09 -0600)]
draw: added array element debug / bounds checking code (disabled)

14 years agollvmpipe: use single swizzled tile
Keith Whitwell [Fri, 16 Jul 2010 13:40:30 +0000 (14:40 +0100)]
llvmpipe: use single swizzled tile

Use a single swizzled tile per colorbuf (and per thread) to avoid
accumulating large amounts of cached swizzled data.

Now that the SSE3 code has been merged to master, the performance delta
of this change is minimal, the main benefit is reduced memory usage
due to no longer keeping swizzled copies of render targets.

It's clear from the performance of the in-place version of this code
that there is still quite a bit of time being spent swizzling &
unswizzling, but it's not clear exactly how to reduce that.

14 years agollvmpipe: Describe _mm_shuffle_epi8() with gcc extended inline assembly when -mssse3...
José Fonseca [Fri, 16 Jul 2010 12:16:57 +0000 (13:16 +0100)]
llvmpipe: Describe _mm_shuffle_epi8() with gcc extended inline assembly when -mssse3 is not supported/enabled.

14 years agollvmpipe: Only use -mssse3 on gcc 4.3+
José Fonseca [Thu, 15 Jul 2010 17:22:39 +0000 (18:22 +0100)]
llvmpipe: Only use -mssse3 on gcc 4.3+

14 years agodraw/llvm: adjust the instance id at run time
Zack Rusin [Fri, 16 Jul 2010 16:19:26 +0000 (12:19 -0400)]
draw/llvm: adjust the instance id at run time

fixes instancing in draw llvm

14 years agodraw: use the instance id when fetching vertex data
Zack Rusin [Fri, 16 Jul 2010 15:58:20 +0000 (11:58 -0400)]
draw: use the instance id when fetching vertex data

14 years agomesa: return retval in _mesa_RenderObjectUnpurgeable()
Brian Paul [Fri, 16 Jul 2010 13:36:19 +0000 (07:36 -0600)]
mesa: return retval in _mesa_RenderObjectUnpurgeable()

Found by Vinson with static analysis.

NOTE: This is a candidate for the 7.8 branch.

14 years agost/egl: Fix build on FreeBSD.
Chia-I Wu [Fri, 16 Jul 2010 12:09:29 +0000 (20:09 +0800)]
st/egl: Fix build on FreeBSD.

There is no libdl on FreeBSD.  Based on patch from Thinker
<thinker@branda.to>, which is against 7.8.

This fixes fdo bug #29093.

14 years agoegl: Build egl_dri2 only when DRI drivers are built.
Chia-I Wu [Fri, 16 Jul 2010 11:48:52 +0000 (19:48 +0800)]
egl: Build egl_dri2 only when DRI drivers are built.

That is, build egl_dri2 only when --with-driver=dri is given (the
default).

14 years agoegl: Build egl_dri2 only when xcb-dri2 is available.
Chia-I Wu [Fri, 16 Jul 2010 11:39:58 +0000 (19:39 +0800)]
egl: Build egl_dri2 only when xcb-dri2 is available.

The driver does not build when xcb-dri2 is not available.

14 years agoglu/sgi: Remove dead initialization in extract565rev.
Vinson Lee [Fri, 16 Jul 2010 08:11:03 +0000 (01:11 -0700)]
glu/sgi: Remove dead initialization in extract565rev.

14 years agoi965g: Remove dead initialization in precalc_tex.
Vinson Lee [Fri, 16 Jul 2010 08:07:13 +0000 (01:07 -0700)]
i965g: Remove dead initialization in precalc_tex.

14 years agor300g: rebuild winsys and command submission to support multiple contexts
Marek Olšák [Tue, 13 Jul 2010 23:59:57 +0000 (01:59 +0200)]
r300g: rebuild winsys and command submission to support multiple contexts

14 years agomesa: Add error path in compressed_texture_error_check.
Vinson Lee [Fri, 16 Jul 2010 06:45:25 +0000 (23:45 -0700)]
mesa: Add error path in compressed_texture_error_check.

Add error path for unhandled dimensions in
compressed_texture_error_check.