mesa.git
13 years agoMerge branch 'arb_sampler_objects'
Brian Paul [Tue, 12 Apr 2011 03:19:41 +0000 (21:19 -0600)]
Merge branch 'arb_sampler_objects'

13 years agoRevert "i965: clear global offset to zero in m0.2 for VS DP read."
Zou Nan hai [Tue, 12 Apr 2011 02:52:50 +0000 (10:52 +0800)]
Revert "i965:   clear global offset to zero in m0.2 for VS DP read."

This reverts commit 66b66295d0bc856c69fdcccc22575580c7ecee16.
it was already fixed by commit 9d60a7ce08a67eb8b79c60f829d090ba4a37ed7e

13 years agoi965: Remove hint_gs_always and resulting dead code
Ian Romanick [Sat, 9 Apr 2011 01:06:35 +0000 (18:06 -0700)]
i965: Remove hint_gs_always and resulting dead code

Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
13 years agointel: Fix ROUND_DOWN_TO macro
Ian Romanick [Fri, 8 Apr 2011 23:31:22 +0000 (16:31 -0700)]
intel: Fix ROUND_DOWN_TO macro

Previously the macro would (ALIGN(value - alignment - 1, alignment)).
At the very least, this was missing parenthesis around "alignment -
1".  As a result, if value was already aligned, it would be reduced by
alignment.  Condisder:

     x = ROUND_DOWN_TO(256, 128);

This becomes:

    x = ALIGN(256 - 128 - 1, 128);

Or:

    x = ALIGN(127, 128);

Which becomes:

    x = 128;

This macro is currently only used in brw_state_batch
(brw_state_batch.c).  It looks like the original version of this macro
would just use too much space in the batch buffer.  It's possible, but
not at all clear to me from the code, that the original behavior is
actually desired.

In any case, this patch does not cause any piglit regressions on my
Ironlake system.

I also think that ALIGN_FLOOR would be a better name for this macro,
but ROUND_DOWN_TO matches rounddown in the Linux kernel.

Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Keith Whitwell <keithw@vmware.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
13 years agoglsl: Make GL_ARB_shader_stencil_export enable block be similar to other blocks
Ian Romanick [Fri, 8 Apr 2011 19:43:53 +0000 (12:43 -0700)]
glsl: Make GL_ARB_shader_stencil_export enable block be similar to other blocks

Tested-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
13 years agoglsl: Only let a shader enable GL_ARB_draw_instanced if the driver supports it
Ian Romanick [Fri, 8 Apr 2011 19:41:42 +0000 (12:41 -0700)]
glsl: Only let a shader enable GL_ARB_draw_instanced if the driver supports it

Also make the GL_ARB_draw_instanced block follow the same pattern as
the other blocks.

Tested-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
13 years agomesa: fixup r600 DRI driver for sampler object changes
Brian Paul [Mon, 11 Apr 2011 19:26:42 +0000 (13:26 -0600)]
mesa: fixup r600 DRI driver for sampler object changes

13 years agoi965: Move the SF VP from state caching to state streaming.
Eric Anholt [Wed, 9 Mar 2011 21:18:30 +0000 (13:18 -0800)]
i965: Move the SF VP from state caching to state streaming.

This is a 49.6% +/- 2.0% (n=9, IPS outlier removed) performance
improvement for the hacked-up-for-cache-misses scissor-many, and no
statistically significant performance difference for the
hacked-up-for-cache-hits version (n=9, IPS outlier removed).  No
statistically significant performance difference from ETQW (n=5) from
these last two commits.

13 years agoi965: Change the SF unit from state caching to state streaming.
Eric Anholt [Wed, 9 Mar 2011 19:11:04 +0000 (11:11 -0800)]
i965: Change the SF unit from state caching to state streaming.

This is a 28.1% +/- 1.4% (n=10) performance improvement for the
hacked-up-for-cache-misses scissor-many (n=10), and no statistically
significant wall-time performance difference for the
hacked-up-for-cache-hits version (n=9, first outlier in each removed
since IPS was warming up.  User time increased by about 4.7%, but
kernel time decreased equivalently).

13 years agoi965: Turn SF unit and viewport structs into pointers to prep for streaming.
Eric Anholt [Wed, 9 Mar 2011 18:51:52 +0000 (10:51 -0800)]
i965: Turn SF unit and viewport structs into pointers to prep for streaming.

I wanted to separate this mechanical change from the actual work.

13 years agou_vbuf_mgr: fixed vbo max_index calculation
pepp [Mon, 11 Apr 2011 15:16:45 +0000 (17:16 +0200)]
u_vbuf_mgr: fixed vbo max_index calculation

Signed-off-by: Marek Olšák <maraeo@gmail.com>
13 years agor600g: handle PIPE_CAP_FRAGMENT_COLOR_CLAMP_CONTROL in get_param
Marek Olšák [Mon, 11 Apr 2011 12:37:58 +0000 (14:37 +0200)]
r600g: handle PIPE_CAP_FRAGMENT_COLOR_CLAMP_CONTROL in get_param

13 years agodocs: GL_ARB_sampler_objects updates
Brian Paul [Sun, 10 Apr 2011 19:06:27 +0000 (13:06 -0600)]
docs: GL_ARB_sampler_objects updates

13 years agomesa: plug in new functions for GL_ARB_sampler_objects
Brian Paul [Sun, 10 Apr 2011 18:48:28 +0000 (12:48 -0600)]
mesa: plug in new functions for GL_ARB_sampler_objects

Build the new sources, plug the new functions into the dispatch table,
implement display list support.  And enable extension in the gallium
state tracker.

13 years agomesa: new code/functions for GL_ARB_sampler_objects
Brian Paul [Sun, 10 Apr 2011 18:47:47 +0000 (12:47 -0600)]
mesa: new code/functions for GL_ARB_sampler_objects

This implements the infrastructure for sampler objects and all the new
API functions.

13 years agomesa: alloc/free shared sampler objects
Brian Paul [Sun, 10 Apr 2011 18:47:00 +0000 (12:47 -0600)]
mesa: alloc/free shared sampler objects

13 years agomesa: new driver hooks for GL_ARB_sampler_objects
Brian Paul [Sun, 10 Apr 2011 18:46:32 +0000 (12:46 -0600)]
mesa: new driver hooks for GL_ARB_sampler_objects

13 years agomesa: add glGet for GL_ARB_sampler_objects
Brian Paul [Sun, 10 Apr 2011 18:46:15 +0000 (12:46 -0600)]
mesa: add glGet for GL_ARB_sampler_objects

13 years agomesa: move sampler state into new gl_sampler_object type
Brian Paul [Sun, 10 Apr 2011 18:44:46 +0000 (12:44 -0600)]
mesa: move sampler state into new gl_sampler_object type

gl_texture_object contains an instance of this type for the regular
texture object sampling state.  glGenSamplers() generates new instances
of gl_sampler_object which can override that state with glBindSampler().

13 years agoglapi: regenerated files for GL_ARB_sampler_objects
Brian Paul [Sun, 10 Apr 2011 18:42:24 +0000 (12:42 -0600)]
glapi: regenerated files for GL_ARB_sampler_objects

13 years agoglapi: interface for GL_ARB_sampler_objects
Brian Paul [Sun, 10 Apr 2011 18:41:39 +0000 (12:41 -0600)]
glapi: interface for GL_ARB_sampler_objects

13 years agoglx: Only remove the glx_display from the list after it's destroyed.
Henri Verbeet [Thu, 7 Apr 2011 21:48:28 +0000 (23:48 +0200)]
glx: Only remove the glx_display from the list after it's destroyed.

Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
13 years agoglx: Destroy dri2Hash on DRI2 display destruction.
Henri Verbeet [Thu, 7 Apr 2011 21:48:28 +0000 (23:48 +0200)]
glx: Destroy dri2Hash on DRI2 display destruction.

Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
13 years agomesa: Also update the color draw buffer if it's explicitly set to GL_NONE.
Henri Verbeet [Thu, 7 Apr 2011 21:48:28 +0000 (23:48 +0200)]
mesa: Also update the color draw buffer if it's explicitly set to GL_NONE.

NOTE: This is a candidate for the 7.10 branch.

Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
13 years agodocs: fix typos in wayland spec
Nicolas Kaiser [Sun, 10 Apr 2011 12:04:44 +0000 (05:04 -0700)]
docs: fix typos in wayland spec

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agodocs: fix typos in Mesa specs
Nicolas Kaiser [Sun, 10 Apr 2011 15:58:50 +0000 (09:58 -0600)]
docs: fix typos in Mesa specs

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agonv50,nvc0: silence shader debug output
Christoph Bumiller [Sun, 10 Apr 2011 11:59:26 +0000 (13:59 +0200)]
nv50,nvc0: silence shader debug output

13 years agonvc0: make the card permit separate colour outputs
Christoph Bumiller [Sun, 10 Apr 2011 11:57:34 +0000 (13:57 +0200)]
nvc0: make the card permit separate colour outputs

13 years agonv50-nvc0: make use of COLOR_MASK,BLEND_ENABLE_COMMON
Christoph Bumiller [Sat, 9 Apr 2011 16:25:29 +0000 (18:25 +0200)]
nv50-nvc0: make use of COLOR_MASK,BLEND_ENABLE_COMMON

13 years agonvc0: shrink CSOs a little
Christoph Bumiller [Fri, 8 Apr 2011 13:32:18 +0000 (15:32 +0200)]
nvc0: shrink CSOs a little

13 years agonv50,nvc0: identify some line rasterization state
Christoph Bumiller [Thu, 31 Mar 2011 17:04:17 +0000 (19:04 +0200)]
nv50,nvc0: identify some line rasterization state

Fixes width of non-smooth (aliased) lines on nvc0.

13 years agonvc0: force perspective correction hint to nicest
Christoph Bumiller [Sun, 10 Apr 2011 11:55:01 +0000 (13:55 +0200)]
nvc0: force perspective correction hint to nicest

Fixes issues in e.g. nexuiz (desertfactory) or supertuxkart that
look like lighting bugs.

They're not visible with the software rasterizers because their
notion of linear interpolation seems to be different from that
of nv50/nvc0.

13 years agonv50,nvc0: don't insert instructions after the block terminator
Christoph Bumiller [Fri, 8 Apr 2011 13:51:48 +0000 (15:51 +0200)]
nv50,nvc0: don't insert instructions after the block terminator

13 years agoMake st_pipe_vertex_format return type in st_draw.h match st_draw.c
Alan Coopersmith [Fri, 8 Apr 2011 23:48:12 +0000 (16:48 -0700)]
Make st_pipe_vertex_format return type in st_draw.h match st_draw.c

Fixes compiler error from Sun compilers:
"state_tracker/st_draw.c", line 185: identifier redeclared: st_pipe_vertex_format
        current : function(unsigned int, unsigned int, unsigned int, unsigned char) returning enum pipe_format
        previous: function(unsigned int, unsigned int, unsigned int, unsigned char) returning unsigned int : "state_tracker/st_draw.h", line 73

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
13 years agoFix GET_PROGRAM_NAME() on Solaris to not try to modify a read-only string
Alan Coopersmith [Fri, 8 Apr 2011 20:03:16 +0000 (13:03 -0700)]
Fix GET_PROGRAM_NAME() on Solaris to not try to modify a read-only string

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
13 years agoRevert "r300g: handle DISCARD_WHOLE_RESOURCE for buffers"
Marek Olšák [Fri, 8 Apr 2011 21:19:53 +0000 (23:19 +0200)]
Revert "r300g: handle DISCARD_WHOLE_RESOURCE for buffers"

This reverts commit 437c748bf5072d2bded77a00c74c51cdb8b510e5.

The commit is wrong for several reasons. One of them is when we grab
a new buffer, we should update all the states it is bound in,
including all parallel contexts. I don't think this is even doable.

The correct solution would be upload data via a temporary buffer and
do resource_copy_region to the original one.

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

13 years agor300g: fix another crash with hyperz
Marek Olšák [Fri, 8 Apr 2011 21:16:17 +0000 (23:16 +0200)]
r300g: fix another crash with hyperz

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

13 years agoDisable direct rendering on Cygwin
Jon TURNEY [Mon, 14 Mar 2011 22:08:23 +0000 (22:08 +0000)]
Disable direct rendering on Cygwin

Add Cygwin platform-specific settings and drivers to build for dri driver:
- by default, disable direct rendering.
- if direct rendering is enabled, the swrast dridriver is the only one it's
sensible to try to build (this doesn't work at the moment as additional patches
are required to build a libGL which can load just swrast without the DRM headers,
even though there's no actual functional dependency)

Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Julien Cristau <jcristau@debian.org>
13 years agoDisable direct rendering on GNU/Hurd
nobled [Mon, 14 Mar 2011 22:08:22 +0000 (22:08 +0000)]
Disable direct rendering on GNU/Hurd

The Hurd kernel doesn't have DRM yet.

Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Reviewed-By: Jakob Bornecrantz <wallbraker@gmail.com>
13 years agoOnly require libdrm if direct rendering is actually enabled.
Samuel Thibault [Mon, 14 Mar 2011 22:08:21 +0000 (22:08 +0000)]
Only require libdrm if direct rendering is actually enabled.

Fix build when configured --with-driver=dri --disable-driglx-direct on targets
without drm e.g. GNU/Hurd and Cygwin

Based on the Debian patch file '05_hurd-ftbfs.diff' by Samuel Thibault.

Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Reviewed-By: Jakob Bornecrantz <wallbraker@gmail.com>
13 years agor300g: fix crash when adding a new relocation
Marek Olšák [Fri, 8 Apr 2011 18:42:03 +0000 (20:42 +0200)]
r300g: fix crash when adding a new relocation

No idea why it's so hard to reproduce.
Broken with: c35572352e3e92683988ee8d151b47f4190d62f9

Thanks to Toni Spets for assistance.

13 years agor300g: emit US_FORMAT on R520 only
Marek Olšák [Fri, 8 Apr 2011 18:05:33 +0000 (20:05 +0200)]
r300g: emit US_FORMAT on R520 only

13 years agoi965/fs: Remove broken optimization for live intervals in loops.
Eric Anholt [Sun, 3 Apr 2011 04:11:32 +0000 (18:11 -1000)]
i965/fs: Remove broken optimization for live intervals in loops.

The theory here was to detect a temporary variable used within a loop,
and avoid considering it live across the entire loop.  However, it was
overeager and failed when the first definition of the variable
appeared within the loop but was only conditionally defined.

Fixes glsl-fs-loop-redundant-condition.

13 years agou_vbuf_mgr: fix crash with unsupported vertex format in hw VBOs
Marek Olšák [Fri, 8 Apr 2011 17:31:26 +0000 (19:31 +0200)]
u_vbuf_mgr: fix crash with unsupported vertex format in hw VBOs

13 years agor300g: fix crash with hyperz
Marek Olšák [Fri, 8 Apr 2011 11:27:14 +0000 (13:27 +0200)]
r300g: fix crash with hyperz

r300_update_hyperz_state is no longer required to be called here.

13 years agor300g: Properly take the sampler view's first_level into account when sampling.
Henri Verbeet [Mon, 17 Jan 2011 21:03:30 +0000 (22:03 +0100)]
r300g: Properly take the sampler view's first_level into account when sampling.

Signed-off-by: Brian Paul <brianp@vmware.com>
Signed-off-by: Marek Olšák <maraeo@gmail.com>
13 years agollvmpipe: Take the sampler view's first_level into account when sampling.
Fabian Bieler [Thu, 31 Mar 2011 10:32:52 +0000 (12:32 +0200)]
llvmpipe: Take the sampler view's first_level into account when sampling.

13 years agosoftpipe: Take the sampler view's first_level into account when sampling.
Henri Verbeet [Mon, 17 Jan 2011 21:03:30 +0000 (22:03 +0100)]
softpipe: Take the sampler view's first_level into account when sampling.

Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agost/mesa: Clamp min_lod to the max miplevel as well.
Henri Verbeet [Mon, 17 Jan 2011 21:03:30 +0000 (22:03 +0100)]
st/mesa: Clamp min_lod to the max miplevel as well.

Otherwise min_lod can potentially be larger than the clamped max_lod. The
code that follows will swap min_lod and max_lod in that case, resulting in a
max_lod larger than MAX_LEVEL.

Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agost/mesa: Set samplers views' first_level.
Henri Verbeet [Mon, 17 Jan 2011 21:03:30 +0000 (22:03 +0100)]
st/mesa: Set samplers views' first_level.

Base level and min LOD aren't equivalent. In particular, min LOD has no
effect on image array selection for magnification and non-mipmapped
minification.

Signed-off-by: Brian Paul <brianp@vmware.com>
13 years agor300g: do not advertise R16F and RG16F on DRM < 2.8.0
Marek Olšák [Fri, 8 Apr 2011 02:37:19 +0000 (04:37 +0200)]
r300g: do not advertise R16F and RG16F on DRM < 2.8.0

13 years agor300g: fix texturing with sizes > 2048 on r500
Marek Olšák [Fri, 8 Apr 2011 01:11:22 +0000 (03:11 +0200)]
r300g: fix texturing with sizes > 2048 on r500

13 years agor300g: add 'radeon: ' prefix to error messages in winsys
Marek Olšák [Thu, 7 Apr 2011 21:36:18 +0000 (23:36 +0200)]
r300g: add 'radeon: ' prefix to error messages in winsys

13 years agomesa: fix dstRowDiff computation in RGTC texstore functions
Marek Olšák [Tue, 5 Apr 2011 23:23:51 +0000 (01:23 +0200)]
mesa: fix dstRowDiff computation in RGTC texstore functions

Copied from libtxc_dxtn, this fixes NPOT RGTC1 textures with r300g.
I also did the same for RGTC2.

13 years agoegl_dri2.c: Open drm device with O_CLOEXEC
Kristian Høgsberg [Thu, 7 Apr 2011 22:27:06 +0000 (18:27 -0400)]
egl_dri2.c: Open drm device with O_CLOEXEC

Not a good fd to leak.

13 years agor600g: Unreference framebuffer state on context destruction.
Henri Verbeet [Thu, 7 Apr 2011 20:21:20 +0000 (22:21 +0200)]
r600g: Unreference framebuffer state on context destruction.

Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
13 years agor600g: Use symbolic names for NUMBER_TYPE.
Henri Verbeet [Thu, 7 Apr 2011 20:21:20 +0000 (22:21 +0200)]
r600g: Use symbolic names for NUMBER_TYPE.

Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
13 years agodocs: replace llvmpipe/README with docs/llvmpipe.html
Brian Paul [Thu, 7 Apr 2011 19:56:45 +0000 (13:56 -0600)]
docs: replace llvmpipe/README with docs/llvmpipe.html

13 years agollvmpipe: document issue with LLVM 2.8 and earlier with AVX
Brian Paul [Thu, 7 Apr 2011 19:43:00 +0000 (13:43 -0600)]
llvmpipe: document issue with LLVM 2.8 and earlier with AVX

13 years agoutil: add cpu detection for sse 4.2 and avx
Brian Paul [Thu, 7 Apr 2011 19:41:52 +0000 (13:41 -0600)]
util: add cpu detection for sse 4.2 and avx

13 years agoutil: simplify bit shifting in util_cpu_detect()
Brian Paul [Thu, 7 Apr 2011 19:41:52 +0000 (13:41 -0600)]
util: simplify bit shifting in util_cpu_detect()

13 years agosvga: another tweak to adjust_x term (use -0.5)
Brian Paul [Thu, 7 Apr 2011 17:25:46 +0000 (11:25 -0600)]
svga: another tweak to adjust_x term (use -0.5)

13 years agomesa: Update _ElementSize in a few more places.
José Fonseca [Thu, 7 Apr 2011 12:35:25 +0000 (13:35 +0100)]
mesa: Update _ElementSize in a few more places.

13 years agomesa/st: Fix user buffer size computation when stride is zero.
José Fonseca [Thu, 7 Apr 2011 11:19:14 +0000 (12:19 +0100)]
mesa/st: Fix user buffer size computation when stride is zero.

Although for GL a zero stride means tightly packed elements, Mesa
internally uses zero strides for constant arrays.

Therefore user buffers need to be defined from

  buffer_offset + src_offset + min_index*stride

to

  buffer_offset + src_offset + max_index*stride + elem_size

Simplifying the later with (max_index + 1)*stride will give zero
sized buffers.

This change also aggregates the st_context's info about user buffers
into a single array.

13 years agomesa: Update _ElementSize.
Brian Paul [Thu, 7 Apr 2011 11:07:32 +0000 (12:07 +0100)]
mesa: Update _ElementSize.

13 years agomesa/st: Prevent 'end' < 'start' in vbo_exec_DrawRangeElementsBaseVertex()
José Fonseca [Wed, 6 Apr 2011 14:10:19 +0000 (15:10 +0100)]
mesa/st: Prevent 'end' < 'start' in vbo_exec_DrawRangeElementsBaseVertex()

We adjust 'end' to fit into _MaxElement, but that may result into a 'start'
value bigger than 'end' being passed downstream, causing havoc.

This could be seen with arb_robustness_draw-vbo-bounds, due to an
application bug.

13 years agomesa/st: Handle feedback draw when VBO offsets are not sorted in ascending order.
José Fonseca [Wed, 6 Apr 2011 13:38:26 +0000 (14:38 +0100)]
mesa/st: Handle feedback draw when VBO offsets are not sorted in ascending order.

Simply port the same logic from setup_interleaved_attribs().

Avoids overflow in mustpass.c and feedback.c conform tests.

13 years agoi965: clear global offset to zero in m0.2 for VS DP read.
Zou Nan hai [Thu, 7 Apr 2011 13:07:57 +0000 (21:07 +0800)]
i965:   clear global offset to zero in m0.2 for VS DP read.

Signed-off-by: Zou Nan hai <nanhai.zou@intel.com>
13 years agomesa: Fix allocation size of extension_indices array.
Vinson Lee [Wed, 6 Apr 2011 23:13:15 +0000 (16:13 -0700)]
mesa: Fix allocation size of extension_indices array.

Reviewed-by: Brian Paul <brianp@vmware.com>
13 years agomesa: fix error message text
Brian Paul [Wed, 6 Apr 2011 20:22:39 +0000 (14:22 -0600)]
mesa: fix error message text

13 years agomesa: consolidate code in _mesa_update_array_max_element()
Brian Paul [Wed, 6 Apr 2011 20:16:57 +0000 (14:16 -0600)]
mesa: consolidate code in _mesa_update_array_max_element()

13 years agomesa: Add link to 7.10.2 release notes
Ian Romanick [Wed, 6 Apr 2011 20:46:58 +0000 (13:46 -0700)]
mesa: Add link to 7.10.2 release notes

13 years agodocs: update news.html with 7.10.2 release
Ian Romanick [Wed, 6 Apr 2011 20:41:43 +0000 (13:41 -0700)]
docs: update news.html with 7.10.2 release
(cherry picked from commit b0866f6cfdfcaf23686b1ae2a99627d468196db2)

13 years agoImport 7.10.2 release notes from 7.10 branch
Ian Romanick [Wed, 6 Apr 2011 20:46:20 +0000 (13:46 -0700)]
Import 7.10.2 release notes from 7.10 branch

13 years agor600g: Fix non-independent blend state.
Julian Adams [Wed, 6 Apr 2011 19:04:08 +0000 (21:04 +0200)]
r600g: Fix non-independent blend state.

This fixes piglit fbo/fbo-drawbuffers-blend-add.

Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
13 years agomesa: init/release the default texture buffer object
Brian Paul [Wed, 6 Apr 2011 19:00:14 +0000 (13:00 -0600)]
mesa: init/release the default texture buffer object

13 years agomesa: fix popping of texture state for GL_TEXTURE_BUFFER
Brian Paul [Wed, 6 Apr 2011 18:45:21 +0000 (12:45 -0600)]
mesa: fix popping of texture state for GL_TEXTURE_BUFFER

Fixes http://bugs.freedesktop.org/show_bug.cgi?id=36032

13 years agomesa: TEXTURE_BUFFER fix-up
Brian Paul [Wed, 6 Apr 2011 18:33:28 +0000 (12:33 -0600)]
mesa: TEXTURE_BUFFER fix-up

Fixes http://bugs.freedesktop.org/show_bug.cgi?id=36033

13 years agor300/compiler: Don't try to convert RGB to Alpha in full instructions
Tom Stellard [Wed, 6 Apr 2011 06:49:23 +0000 (23:49 -0700)]
r300/compiler: Don't try to convert RGB to Alpha in full instructions

Note: This is a candidate for the 7.10 branch.

13 years agomesa: Recognize MESA_VERBOSE=all as shortcut for all debug options.
José Fonseca [Wed, 6 Apr 2011 07:25:22 +0000 (08:25 +0100)]
mesa: Recognize MESA_VERBOSE=all as shortcut for all debug options.

13 years agodraw: Fix thinko in debug warnings.
José Fonseca [Tue, 5 Apr 2011 20:35:11 +0000 (21:35 +0100)]
draw: Fix thinko in debug warnings.

13 years agotrace: Correct/cleanup.
José Fonseca [Tue, 5 Apr 2011 19:13:44 +0000 (20:13 +0100)]
trace: Correct/cleanup.

Observe the actual type hierarchy and polymorphism of sampler views and
surface state.

s/texture/resource/

etc.

13 years agoRevert "trace: Dump blend state as a binary blob."
José Fonseca [Mon, 4 Apr 2011 10:48:07 +0000 (11:48 +0100)]
Revert "trace: Dump blend state as a binary blob."

This reverts commit dcdf94c87c087186f963b6e201b2989c61a76ef0.

No retrace support anymore, so human-legible representation of blend
state is much more useful than a blob.

13 years agost/python: Remove bindings, and all its dependencies.
José Fonseca [Mon, 4 Apr 2011 10:41:30 +0000 (11:41 +0100)]
st/python: Remove bindings, and all its dependencies.

Because:
- bindings are not fully automatic, and they are broken most of the time
- unit tests/samples can be written in C on top of graw
- tracing/retracing is more useful at API levels with stable ABIs such as
  GL, producing traces that cover more layers of the driver stack and and
  can be used for regression testing

13 years agoswrast: simplify assertion to silence warning
Brian Paul [Tue, 5 Apr 2011 23:52:47 +0000 (17:52 -0600)]
swrast: simplify assertion to silence warning

13 years agomesa: core support for GL_ARB_texture_buffer_object
Brian Paul [Wed, 6 Apr 2011 01:02:07 +0000 (19:02 -0600)]
mesa: core support for GL_ARB_texture_buffer_object

No GLSL or driver support yet.

13 years agomesa: regenerated API entrypoints for GL_ARB_texture_buffer_object
Brian Paul [Wed, 6 Apr 2011 00:50:39 +0000 (18:50 -0600)]
mesa: regenerated API entrypoints for GL_ARB_texture_buffer_object

13 years agomesa: API spec for GL_ARB_texture_buffer_object
Brian Paul [Wed, 6 Apr 2011 00:48:26 +0000 (18:48 -0600)]
mesa: API spec for GL_ARB_texture_buffer_object

13 years agoscons: Generate empty git_sha1.h for all platforms.
Vinson Lee [Tue, 5 Apr 2011 22:32:39 +0000 (15:32 -0700)]
scons: Generate empty git_sha1.h for all platforms.

Fixes MinGW SCons build.

13 years agoir_to_mesa: Use gl_register_file enum type rather than 'int'.
Kenneth Graunke [Tue, 5 Apr 2011 20:22:30 +0000 (13:22 -0700)]
ir_to_mesa: Use gl_register_file enum type rather than 'int'.

src_reg already used this; make dst_reg use it too.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoir_to_mesa: Unprefix ir_to_mesa_undef* and ir_to_mesa_address_reg.
Kenneth Graunke [Tue, 5 Apr 2011 20:19:50 +0000 (13:19 -0700)]
ir_to_mesa: Unprefix ir_to_mesa_undef* and ir_to_mesa_address_reg.

Rename ir_to_mesa_undef to undef_src, for clarity.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoir_to_mesa: Use emit overloads to avoid passing undef registers.
Kenneth Graunke [Tue, 5 Apr 2011 19:22:42 +0000 (12:22 -0700)]
ir_to_mesa: Use emit overloads to avoid passing undef registers.

Makes the code just a little bit cleaner.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoir_to_mesa: Rename ir_to_mesa_emit_*_opX methods to emit_*.
Kenneth Graunke [Tue, 5 Apr 2011 19:16:57 +0000 (12:16 -0700)]
ir_to_mesa: Rename ir_to_mesa_emit_*_opX methods to emit_*.

There's really no need for a prefix on member functions, and overloading
takes care of the _op1/_op2 distinction quite nicely.  Eric already made
a similar change in the i965 FS backend.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoir_to_mesa: Use constructors to convert between src_reg and dst_reg.
Kenneth Graunke [Tue, 5 Apr 2011 19:01:59 +0000 (12:01 -0700)]
ir_to_mesa: Use constructors to convert between src_reg and dst_reg.

Rather than ir_to_mesa_dst_reg_from_src and ir_to_mesa_src_reg_from_dst.

The new constructors are marked 'explicit' so that the compiler can
catch cases where source and destination registers were accidentally
interchanged.

This also necessitated using constructors to initialize the undef and
address registers, as well as adding a default constructor.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoir_to_mesa: Remove the "ir_to_mesa_" prefix on src_reg/dst_reg types.
Kenneth Graunke [Tue, 5 Apr 2011 18:43:21 +0000 (11:43 -0700)]
ir_to_mesa: Remove the "ir_to_mesa_" prefix on src_reg/dst_reg types.

Both classes are completely private to ir_to_mesa.cpp, so there won't be
any name conflicts with other parts of Mesa.  The prefix simply makes it
harder to read.

Also, use a class rather than typedef structs.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoir_to_mesa: Rename src_reg and dst_reg variables to src and dst.
Kenneth Graunke [Tue, 5 Apr 2011 18:30:36 +0000 (11:30 -0700)]
ir_to_mesa: Rename src_reg and dst_reg variables to src and dst.

This is in preparation from removing the "ir_to_mesa_" prefix on the
src_reg and dst_reg types, which would cause a naming conflict.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
13 years agoscons: generate empty git_sha1.h file for now
Brian Paul [Tue, 5 Apr 2011 20:07:41 +0000 (14:07 -0600)]
scons: generate empty git_sha1.h file for now

My feeble attempt to invoke the extract_git_sha1 script from
SConscript didn't work.  Hopefully this will do for now.

13 years agomesa: Include GIT SHA1 in GL version string
Ian Romanick [Thu, 31 Mar 2011 18:42:01 +0000 (11:42 -0700)]
mesa: Include GIT SHA1 in GL version string

Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
13 years agodri: Remove driver date from renderer string
Ian Romanick [Tue, 1 Mar 2011 22:10:49 +0000 (14:10 -0800)]
dri: Remove driver date from renderer string

Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
13 years agoir_to_mesa: Handle shadow compare w/projection and LOD bias correctly
Ian Romanick [Mon, 4 Apr 2011 20:35:26 +0000 (13:35 -0700)]
ir_to_mesa: Handle shadow compare w/projection and LOD bias correctly

The code would previously handle the projection, then swizzle the
shadow comparitor into place.  However, when the projection is done
"by hand," as in the TXB case, the unprojected shadow comparitor would
over-write the projected shadow comparitor.

Shadow comparison with projection and LOD is an extremely rare case in
real application code, so it shouldn't matter that we don't handle
that case with the greatest efficiency.

NOTE: This is a candidate for the stable branches.

Reviewed-by: Brian Paul <brianp@vmware.com>
References: https://bugs.freedesktop.org/show_bug.cgi?id=32395