mesa.git
13 years agomesa: regenerated API files for GL_EXT_texture_integer
Brian Paul [Sat, 23 Oct 2010 16:01:56 +0000 (10:01 -0600)]
mesa: regenerated API files for GL_EXT_texture_integer

13 years agoglapi: include/build EXT_texture_integer.xml
Brian Paul [Sat, 23 Oct 2010 16:01:25 +0000 (10:01 -0600)]
glapi: include/build EXT_texture_integer.xml

13 years agoglapi: GL_EXT_texture_integer API
Brian Paul [Sat, 23 Oct 2010 16:00:36 +0000 (10:00 -0600)]
glapi: GL_EXT_texture_integer API

13 years agomesa: simplify target_can_be_compressed() function
Brian Paul [Sat, 23 Oct 2010 15:45:24 +0000 (09:45 -0600)]
mesa: simplify target_can_be_compressed() function

13 years agost/mesa: add format selection for signed/unsigned integer formats
Brian Paul [Sat, 23 Oct 2010 15:43:50 +0000 (09:43 -0600)]
st/mesa: add format selection for signed/unsigned integer formats

13 years agomesa: added cases for GL_EXT_texture_integer
Brian Paul [Sat, 23 Oct 2010 15:40:49 +0000 (09:40 -0600)]
mesa: added cases for GL_EXT_texture_integer

13 years agomesa: added cases for GL_EXT_texture_integer formats
Brian Paul [Sat, 23 Oct 2010 15:39:07 +0000 (09:39 -0600)]
mesa: added cases for GL_EXT_texture_integer formats

13 years agomesa: compute _IntegerColor field in _mesa_test_framebuffer_completeness()
Brian Paul [Sat, 23 Oct 2010 15:38:45 +0000 (09:38 -0600)]
mesa: compute _IntegerColor field in _mesa_test_framebuffer_completeness()

13 years agomesa: added glGet query for GL_RGBA_INTEGER_MODE_EXT
Brian Paul [Sat, 23 Oct 2010 15:37:39 +0000 (09:37 -0600)]
mesa: added glGet query for GL_RGBA_INTEGER_MODE_EXT

13 years agomesa: added new gl_framebuffer::_IntegerColor field
Brian Paul [Sat, 23 Oct 2010 15:37:06 +0000 (09:37 -0600)]
mesa: added new gl_framebuffer::_IntegerColor field

13 years agomesa: added new gl_extensions::EXT_gpu_shader4 field
Brian Paul [Sat, 23 Oct 2010 15:36:44 +0000 (09:36 -0600)]
mesa: added new gl_extensions::EXT_gpu_shader4 field

13 years agosoftpipe: added some texture sample debug code (disabled)
Brian Paul [Sat, 23 Oct 2010 15:35:37 +0000 (09:35 -0600)]
softpipe: added some texture sample debug code (disabled)

13 years agomesa: new glDrawPixels error check for integer formats
Brian Paul [Sat, 23 Oct 2010 15:35:01 +0000 (09:35 -0600)]
mesa: new glDrawPixels error check for integer formats

13 years agomesa: added _mesa_is_fragment_shader_active() helper
Brian Paul [Sat, 23 Oct 2010 15:33:36 +0000 (09:33 -0600)]
mesa: added _mesa_is_fragment_shader_active() helper

13 years agomesa: minor reformatting, clean-ups
Brian Paul [Sat, 23 Oct 2010 15:32:08 +0000 (09:32 -0600)]
mesa: minor reformatting, clean-ups

13 years agomesa: _mesa_is_format_integer() function
Brian Paul [Sat, 23 Oct 2010 15:27:12 +0000 (09:27 -0600)]
mesa: _mesa_is_format_integer() function

13 years agomesa: _mesa_ClearColorIuiEXT() and _mesa_ClearColorIiEXT()
Brian Paul [Sat, 23 Oct 2010 15:26:10 +0000 (09:26 -0600)]
mesa: _mesa_ClearColorIuiEXT() and _mesa_ClearColorIiEXT()

For GL_EXT_texture_integer.

13 years agomesa: add pixel packing for unscaled integer types
Brian Paul [Sat, 23 Oct 2010 15:22:48 +0000 (09:22 -0600)]
mesa: add pixel packing for unscaled integer types

And add some missing GL_RG cases.

13 years agomesa: split up the image.c file
Brian Paul [Sat, 23 Oct 2010 15:15:01 +0000 (09:15 -0600)]
mesa: split up the image.c file

New files:
pack.c - image/row packing/unpacking functions
pixeltransfer.c - pixel scale/bias/lookup functions

13 years agomesa: simplify fbo format checking code
Brian Paul [Fri, 22 Oct 2010 17:38:23 +0000 (11:38 -0600)]
mesa: simplify fbo format checking code

13 years agomesa: 80-column wrapping
Brian Paul [Fri, 22 Oct 2010 17:25:14 +0000 (11:25 -0600)]
mesa: 80-column wrapping

13 years agodocs: updated GL3 status for primitive restart
Brian Paul [Fri, 22 Oct 2010 17:01:06 +0000 (11:01 -0600)]
docs: updated GL3 status for primitive restart

13 years agost/egl: Use resource reference count for egl_g3d_sync.
Chia-I Wu [Sat, 23 Oct 2010 09:27:58 +0000 (17:27 +0800)]
st/egl: Use resource reference count for egl_g3d_sync.

13 years agoegl: Fix a false negative check in _eglCheckMakeCurrent.
Chia-I Wu [Sat, 23 Oct 2010 08:51:01 +0000 (16:51 +0800)]
egl: Fix a false negative check in _eglCheckMakeCurrent.

This call sequence

  eglMakeCurrent(dpy, surf, surf, ctx1);
  eglMakeCurrent(dpy, surf, surf, ctx2);

should be valid if ctx1 and ctx2 have the same client API and are not
current in another thread.

13 years agoegl: Use reference counting to replace IsLinked or IsBound.
Chia-I Wu [Sat, 23 Oct 2010 04:52:26 +0000 (12:52 +0800)]
egl: Use reference counting to replace IsLinked or IsBound.

Remove all _egl<Res>IsLinked and _egl<Res>IsBound.  Update
_eglBindContext and drivers to do reference counting.

13 years agoegl: Add reference count for resources.
Chia-I Wu [Sat, 23 Oct 2010 03:59:03 +0000 (11:59 +0800)]
egl: Add reference count for resources.

This is a really simple mechanism.  There is no atomicity and the caller
is expected to hold the display lock.

13 years agost/egl: Fix native_mode refresh mode.
Chia-I Wu [Sat, 23 Oct 2010 03:31:29 +0000 (11:31 +0800)]
st/egl: Fix native_mode refresh mode.

Define the unit to match _EGLMode's.

13 years agoegl: Fix _eglModeLookup.
Chia-I Wu [Fri, 22 Oct 2010 18:52:14 +0000 (02:52 +0800)]
egl: Fix _eglModeLookup.

Internally a mode belongs to a screen.  But functions like
eglGetModeAttribMESA treat a mode as a display resource: a mode can be
looked up without a screen.  Considering how KMS works, it is better to
stick to the current implementation.

To properly support looking up a mode without a screen, this commit
assigns each mode (of all screens) a unique ID.

13 years agoegl: Minor changes to the _EGLScreen interface.
Chia-I Wu [Fri, 22 Oct 2010 18:11:21 +0000 (02:11 +0800)]
egl: Minor changes to the _EGLScreen interface.

Make _eglInitScreen take a display and rename _eglAddScreen to
_eglLinkScreen.  Remove unused functions.

13 years agoegl: Minor changes to the _EGLConfig interface.
Chia-I Wu [Fri, 22 Oct 2010 16:47:22 +0000 (00:47 +0800)]
egl: Minor changes to the _EGLConfig interface.

Mainly to rename _eglAddConfig to _eglLinkConfig, along with a few clean
ups.

13 years agoegl: Drop dpy argument from the link functions.
Chia-I Wu [Fri, 22 Oct 2010 16:37:19 +0000 (00:37 +0800)]
egl: Drop dpy argument from the link functions.

All display resources are already initialized with a display.  Linking
simply links a resource to its display.

13 years agoi965: Add support for pull constants to the new FS backend.
Eric Anholt [Fri, 22 Oct 2010 19:57:00 +0000 (12:57 -0700)]
i965: Add support for pull constants to the new FS backend.

Fixes glsl-fs-uniform-array-5, but not 6 which fails in ir_to_mesa.

13 years agoi965: Move the FS disasm/annotation printout to codegen time.
Eric Anholt [Fri, 22 Oct 2010 20:17:38 +0000 (13:17 -0700)]
i965: Move the FS disasm/annotation printout to codegen time.

This makes it a lot easier to track down where we failed when some
code emit triggers an assert.  Plus, less memory allocation for
codegen.

13 years agor600g: not fatal if we can't get tiling info from kernel
Dave Airlie [Fri, 22 Oct 2010 21:45:59 +0000 (07:45 +1000)]
r600g: not fatal if we can't get tiling info from kernel

13 years agor300g: say no to PIPE_CAP_STREAM_OUTPUT and PIPE_CAP_PRIMITIVE_RESTART
Marek Olšák [Fri, 22 Oct 2010 18:33:25 +0000 (20:33 +0200)]
r300g: say no to PIPE_CAP_STREAM_OUTPUT and PIPE_CAP_PRIMITIVE_RESTART

13 years agor300g: do not print get_param errors in non-debug build
Marek Olšák [Fri, 22 Oct 2010 17:45:05 +0000 (19:45 +0200)]
r300g: do not print get_param errors in non-debug build

13 years agomesa: move declaration before code
Brian Paul [Fri, 22 Oct 2010 14:59:06 +0000 (08:59 -0600)]
mesa: move declaration before code

13 years agogalahad: silence warnings
Brian Paul [Fri, 22 Oct 2010 14:58:35 +0000 (08:58 -0600)]
galahad: silence warnings

13 years agodri/nouveau: Force a "slow" Z clear if we're getting a new depth buffer.
Francisco Jerez [Fri, 22 Oct 2010 11:43:57 +0000 (13:43 +0200)]
dri/nouveau: Force a "slow" Z clear if we're getting a new depth buffer.

13 years agoegl: Move fallback routines to eglfallbacks.c.
Chia-I Wu [Fri, 22 Oct 2010 10:11:04 +0000 (18:11 +0800)]
egl: Move fallback routines to eglfallbacks.c.

We do not want them to be all over the places.

13 years agoegl: Parse image attributes with _eglParseImageAttribList.
Chia-I Wu [Fri, 22 Oct 2010 09:09:40 +0000 (17:09 +0800)]
egl: Parse image attributes with  _eglParseImageAttribList.

Avoid code duplications.

13 years agoegl: Move attributes in _EGLImage to _EGLImageAttribs.
Chia-I Wu [Fri, 22 Oct 2010 08:36:47 +0000 (16:36 +0800)]
egl: Move attributes in _EGLImage to _EGLImageAttribs.

The opaque nature of EGLImage implies that extensions almost always
define their own attributes.  Move attributes in _EGLImage to
_EGLImageAttribs and add a helper function to parse attribute lists.

13 years agoegl_glx: Fix borken driver.
Chia-I Wu [Fri, 22 Oct 2010 07:44:33 +0000 (15:44 +0800)]
egl_glx: Fix borken driver.

The driver was broken since 6eda3f311bc24999835003e404d5eda5599bc5de.
All configs fail to pass _eglValidateConfig.

13 years agoegl_glx: Drop the use of [SG]ET_CONFIG_ATTRIB.
Chia-I Wu [Fri, 22 Oct 2010 06:55:31 +0000 (14:55 +0800)]
egl_glx: Drop the use of [SG]ET_CONFIG_ATTRIB.

_EGLConfig can be directly dereferenced now.  Since egl_glx is the last
user of the macros, drop the macros too.

13 years agoegl_dri2: Drop the use of _egl[SG]etConfigKey.
Chia-I Wu [Fri, 22 Oct 2010 07:03:11 +0000 (15:03 +0800)]
egl_dri2: Drop the use of _egl[SG]etConfigKey.

_EGLConfig can be directly dereferenced now.

13 years agowinsys/xlib: rename xm->xlib
Brian Paul [Fri, 22 Oct 2010 01:55:01 +0000 (19:55 -0600)]
winsys/xlib: rename xm->xlib

Move away from the old Mesa-oriented names.

13 years agowinsys/xlib: fix up allocation/dealloction of XImage
Brian Paul [Fri, 22 Oct 2010 01:49:32 +0000 (19:49 -0600)]
winsys/xlib: fix up allocation/dealloction of XImage

Fixes a crash upon exit when using remote display.

13 years agowinsys/xlib: use Bool type for shm field
Brian Paul [Fri, 22 Oct 2010 01:37:11 +0000 (19:37 -0600)]
winsys/xlib: use Bool type for shm field

13 years agowinsys/xlib: formatting fixes
Brian Paul [Fri, 22 Oct 2010 01:17:31 +0000 (19:17 -0600)]
winsys/xlib: formatting fixes

13 years agoMerge branch 'primitive-restart-cleanup'
Brian Paul [Fri, 22 Oct 2010 01:05:40 +0000 (19:05 -0600)]
Merge branch 'primitive-restart-cleanup'

Conflicts:
docs/relnotes-7.10.html

This branch is a re-do of the primitive-restart branch with all
the intermediate/temporary stuff cleaned out.

13 years agodocs: added GL_NV_primitive_restart extension
Brian Paul [Fri, 22 Oct 2010 01:03:39 +0000 (19:03 -0600)]
docs: added GL_NV_primitive_restart extension

13 years agollvmpipe: enable primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
llvmpipe: enable primitive restart

13 years agosoftpipe: enable primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
softpipe: enable primitive restart

13 years agodraw: implement primitive splitting for primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
draw: implement primitive splitting for primitive restart

13 years agost/mesa: support for primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
st/mesa: support for primitive restart

13 years agogallium: new CAP, state for primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
gallium: new CAP, state for primitive restart

13 years agovbo: support for primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
vbo: support for primitive restart

We handle splitting of glDrawArrays() calls into two primitives here
so that drivers don't have to worry about it.

13 years agomesa: plug in primitive restart function
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
mesa: plug in primitive restart function

13 years agomesa: regenerated files with primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
mesa: regenerated files with primitive restart

13 years agomesa: API spec for primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
mesa: API spec for primitive restart

13 years agomesa: set/get primitive restart state
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
mesa: set/get primitive restart state

13 years agomesa: driver hook for primitive restart
Brian Paul [Fri, 22 Oct 2010 01:03:38 +0000 (19:03 -0600)]
mesa: driver hook for primitive restart

13 years agoi965: Be more aggressive in tracking live/dead intervals within loops.
Eric Anholt [Thu, 21 Oct 2010 23:54:03 +0000 (16:54 -0700)]
i965: Be more aggressive in tracking live/dead intervals within loops.

Fixes glsl-fs-convolution-2, which was blowing up due to the array
access insanity getting at the uniform values within the loop.  Each
temporary was considered live across the whole loop.

13 years agodocs: add GL_ARB_texture_rg to release notes
Brian Paul [Thu, 21 Oct 2010 23:04:38 +0000 (17:04 -0600)]
docs: add GL_ARB_texture_rg to release notes

13 years agodocs: update texture red/green support in GL3.txt
Brian Paul [Thu, 21 Oct 2010 23:04:25 +0000 (17:04 -0600)]
docs: update texture red/green support in GL3.txt

13 years agost/mesa: added cases for GL_COMPRESSED_RED/RG in st_choose_format()
Brian Paul [Thu, 21 Oct 2010 22:39:07 +0000 (16:39 -0600)]
st/mesa: added cases for GL_COMPRESSED_RED/RG in st_choose_format()

13 years agomesa: add missing cases for packing red/green images
Brian Paul [Thu, 21 Oct 2010 22:38:18 +0000 (16:38 -0600)]
mesa: add missing cases for packing red/green images

13 years agomesa: add GL_RG case to _mesa_source_buffer_exists()
Brian Paul [Thu, 21 Oct 2010 22:36:23 +0000 (16:36 -0600)]
mesa: add GL_RG case to _mesa_source_buffer_exists()

Fixes failure with glReadPixels(format=GL_RG)

13 years agodraw: fix typo in comment
Brian Paul [Wed, 20 Oct 2010 23:18:40 +0000 (17:18 -0600)]
draw: fix typo in comment

13 years agoi965: Correct scratch space allocation.
Eric Anholt [Thu, 21 Oct 2010 22:07:45 +0000 (15:07 -0700)]
i965: Correct scratch space allocation.

One, it was allocating increments of 1kb, but per thread scratch space
is a power of two.  Two, the new FS wasn't getting total_scratch set
at all, so everyone thought they had 1kb and writes beyond 1kb would
go stomping on a neighbor thread.

With this plus the previous register spilling for the new FS,
glsl-fs-convolution-1 passes.

13 years agoi965: Don't emit register spill offsets directly into g0.
Eric Anholt [Thu, 21 Oct 2010 21:40:49 +0000 (14:40 -0700)]
i965: Don't emit register spill offsets directly into g0.

g0 is used by others, and is expected to be left exactly as it was
dispatched to us.  So manually move g0 into our message reg when
spilling/unspilling and update the offset in the MRF.  Fixes failures
in texture sampling after having spilled a register.

13 years agoi965: Add support for register spilling.
Eric Anholt [Tue, 19 Oct 2010 16:25:51 +0000 (09:25 -0700)]
i965: Add support for register spilling.

It can be tested with if (0) replaced with if (1) to force spilling for all
virtual GRFs.  Some simple tests work, but large texturing tests fail.

13 years agoi965: Fix gl_FrontFacing emit on pre-gen6.
Eric Anholt [Wed, 20 Oct 2010 22:21:53 +0000 (15:21 -0700)]
i965: Fix gl_FrontFacing emit on pre-gen6.

It's amazing this code worked.  Basically, we would get lucky in
register allocation and the tests using frontfacing would happen to
allocate gl_FrontFacing storage and the instructions generating
gl_FrontFacing but pointing at another register to the same hardware
register.  Noticed during register spilling debug, when suddenly they
didn't get allocatd the same storage.

13 years agoi965: Split register allocation out of the ever-growing brw_fs.cpp.
Eric Anholt [Wed, 20 Oct 2010 17:26:29 +0000 (10:26 -0700)]
i965: Split register allocation out of the ever-growing brw_fs.cpp.

13 years agoRefresh autogenerated file builtin_function.cpp.
Kenneth Graunke [Thu, 21 Oct 2010 18:43:39 +0000 (11:43 -0700)]
Refresh autogenerated file builtin_function.cpp.

Since this is just generated by python, it's questionable whether this
should continue to live in the repository - Mesa already has other
things generated from python as part of the build process.

13 years agogenerate_builtins.py: Output large strings as arrays of characters.
Kenneth Graunke [Thu, 21 Oct 2010 18:42:45 +0000 (11:42 -0700)]
generate_builtins.py: Output large strings as arrays of characters.

This works around MSVC's 65535 byte limit, unfortunately at the expense
of any semblance of readability and much larger file size.  Hopefully I
can implement a better solution later, but for now this fixes the build.

13 years agogallivm: Silence uninitialized variable warning.
Vinson Lee [Thu, 21 Oct 2010 18:27:35 +0000 (11:27 -0700)]
gallivm: Silence uninitialized variable warning.

Fixes this GCC warning.
gallivm/lp_bld_tgsi_aos.c: In function 'lp_build_tgsi_aos':
gallivm/lp_bld_tgsi_aos.c:516: warning: 'dst0' may be used uninitialized in this function
gallivm/lp_bld_tgsi_aos.c:516: note: 'dst0' was declared here

13 years agogallivm: Silence uninitialized variable warnings.
Vinson Lee [Thu, 21 Oct 2010 18:21:03 +0000 (11:21 -0700)]
gallivm: Silence uninitialized variable warnings.

Fixes these GCC warnings.
gallivm/lp_bld_sample_aos.c: In function 'lp_build_sample_image_nearest':
gallivm/lp_bld_sample_aos.c:271: warning: 't_ipart' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:271: warning: 'r_ipart' may be used uninitialized in this function

13 years agogallivm: Silence uninitialized variable warnings.
Vinson Lee [Thu, 21 Oct 2010 18:10:15 +0000 (11:10 -0700)]
gallivm: Silence uninitialized variable warnings.

Fixes these GCC warnings.
gallivm/lp_bld_sample_aos.c: In function 'lp_build_sample_image_linear':
gallivm/lp_bld_sample_aos.c:439: warning: 'r_ipart' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:438: warning: 't_ipart' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:438: warning: 't_fpart' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:439: warning: 'r_fpart' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:438: warning: 't_fpart_hi' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:438: warning: 't_fpart_lo' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:439: warning: 'r_fpart_hi' may be used uninitialized in this function
gallivm/lp_bld_sample_aos.c:439: warning: 'r_fpart_lo' may be used uninitialized in this function

13 years agomesa: Remove unused vtxfmt_tmp.h.
Chia-I Wu [Fri, 15 Oct 2010 02:09:37 +0000 (10:09 +0800)]
mesa: Remove unused vtxfmt_tmp.h.

It was used by the "neutral" tnl module that was dropped in
81ccb3e2ce708619f4c23537a237d61bdffdd35f.

13 years agor600g: start splitting out common code from eg/r600.
Dave Airlie [Thu, 21 Oct 2010 09:11:23 +0000 (19:11 +1000)]
r600g: start splitting out common code from eg/r600.

no point duplicating code that doesn't touch hw, also make it easier
to spot mistakes

13 years agor600g: initial translate state support
Dave Airlie [Thu, 21 Oct 2010 07:34:25 +0000 (17:34 +1000)]
r600g: initial translate state support

13 years agodraw: Remove unnecessary header.
Vinson Lee [Thu, 21 Oct 2010 08:47:52 +0000 (01:47 -0700)]
draw: Remove unnecessary header.

13 years agollvmpipe: Remove unnecessary header.
Vinson Lee [Thu, 21 Oct 2010 08:44:48 +0000 (01:44 -0700)]
llvmpipe: Remove unnecessary header.

13 years agoglsl: Refresh autogenerated file builtin_function.cpp.
Kenneth Graunke [Tue, 19 Oct 2010 18:57:15 +0000 (11:57 -0700)]
glsl: Refresh autogenerated file builtin_function.cpp.

13 years agoglsl: Add support for GLSL 1.30's modf built-in.
Kenneth Graunke [Tue, 19 Oct 2010 18:56:47 +0000 (11:56 -0700)]
glsl: Add support for GLSL 1.30's modf built-in.

13 years agoglcpp: Refresh autogenerated lexer file.
Kenneth Graunke [Thu, 21 Oct 2010 04:53:36 +0000 (21:53 -0700)]
glcpp: Refresh autogenerated lexer file.

13 years agoglcpp: Return NEWLINE token for newlines inside multi-line comments.
Kenneth Graunke [Thu, 21 Oct 2010 04:51:03 +0000 (21:51 -0700)]
glcpp: Return NEWLINE token for newlines inside multi-line comments.

This is necessary for the main compiler to get correct line numbers.

13 years agor600g: add texture tiling enable under a debug option.
Dave Airlie [Thu, 21 Oct 2010 03:40:45 +0000 (13:40 +1000)]
r600g: add texture tiling enable under a debug option.

At the moment you need kernel patches to have texture tiling work
with the kernel CS checker, so once they are upstream and the drm version
is bumped we can make this enable flip the other way most likely.

13 years agor600g: add texture tiling alignment support.
Dave Airlie [Thu, 21 Oct 2010 03:37:54 +0000 (13:37 +1000)]
r600g: add texture tiling alignment support.

this sets things up to align stride/height with tile sizes,
it also adds support for the 2D/1D array mode cross over point.

13 years agor600g: introduce a per-driver resource flag for transfers.
Dave Airlie [Thu, 21 Oct 2010 03:36:01 +0000 (13:36 +1000)]
r600g: introduce a per-driver resource flag for transfers.

this is to be used to decide not to tile a surface being used for transfers.

13 years agor600g: add r600 surface to store the aligned height.
Dave Airlie [Thu, 21 Oct 2010 03:31:27 +0000 (13:31 +1000)]
r600g: add r600 surface to store the aligned height.

we need to know the aligned height when binding the surface to cb/zb,
not the gallium surface height.

13 years agor600g: start adding hooks for aligning width/height for tiles.
Dave Airlie [Thu, 21 Oct 2010 03:27:07 +0000 (13:27 +1000)]
r600g: start adding hooks for aligning width/height for tiles.

13 years agor600g: move to per-miplevel array mode.
Dave Airlie [Thu, 21 Oct 2010 03:26:04 +0000 (13:26 +1000)]
r600g: move to per-miplevel array mode.

Since the hw transitions from 2D->1D sampling below the 2D macrotile
size we need to keep track of the array mode per level so we can
render to it using the CB.

13 years agor600g: all non-0 mipmap levels need to be w/h aligned to POT.
Dave Airlie [Thu, 21 Oct 2010 03:20:14 +0000 (13:20 +1000)]
r600g: all non-0 mipmap levels need to be w/h aligned to POT.

this adds a new minify function to the driver to ensure this.

13 years agoswrast: Print out format on unexpected failure in _swrast_DrawPixels.
Vinson Lee [Wed, 20 Oct 2010 22:27:48 +0000 (15:27 -0700)]
swrast: Print out format on unexpected failure in _swrast_DrawPixels.

13 years agomesa: Remove FEATURE_ARB_shading_language_120 macro.
Kenneth Graunke [Wed, 20 Oct 2010 20:52:16 +0000 (13:52 -0700)]
mesa: Remove FEATURE_ARB_shading_language_120 macro.

Everything should be able to support 1.20 at this point.

13 years agoglsl: Remove useless ir_shader enumeration value.
Kenneth Graunke [Wed, 20 Oct 2010 21:59:40 +0000 (14:59 -0700)]
glsl: Remove useless ir_shader enumeration value.

13 years agoglsl: Add assert for unhandled ir_shader case.
Vinson Lee [Wed, 20 Oct 2010 21:10:26 +0000 (14:10 -0700)]
glsl: Add assert for unhandled ir_shader case.

Silences this GCC warning.
ast_to_hir.cpp: In function 'void apply_type_qualifier_to_variable(const
ast_type_qualifier*, ir_variable*, _mesa_glsl_parse_state*, YYLTYPE*)'
ast_to_hir.cpp:1768: warning: enumeration value 'ir_shader' not handled
in switch

13 years agodraw: use float version of LLVM Mul/Add instructions
Brian Paul [Wed, 20 Oct 2010 20:54:38 +0000 (14:54 -0600)]
draw: use float version of LLVM Mul/Add instructions

LLVM 2.8 is pickier about int vs float instructions and operands.