summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-03-03scons: Add human friendlier build messages for lex/yacc.José Fonseca1-0/+2
2011-03-03scons: Always load lex/yacc tool.José Fonseca1-0/+2
lex/yacc is not loaded by default when toolchain is not default either, e.g., when toolchain=crossmingw.
2011-03-03i965: SNB GT1 has only 32k urb and max 128 urb entries.Zou Nan hai2-4/+19
Signed-off-by: Zou Nan hai <nanhai.zou@intel.com>
2011-03-02glsl: Remove unused glcpp/Makefile.am.Kenneth Graunke1-44/+0
This is a remnant of when glsl2 lived in its own repository.
2011-03-02glsl: Remove 'tests' subfolder.Kenneth Graunke70-631/+0
These have long since moved to piglit and aren't useful to have here.
2011-03-03r600g: correct mega_fetch_count in fetch shaderChristian König1-1/+1
2011-03-02tgsi: defer allocation of huge inputs/outputs until we have a gsZack Rusin2-6/+45
2011-03-02docs: added news item for 7.9.2 and 7.10.1 releasesIan Romanick1-0/+9
2011-03-02docs: All links to 7.9.2 and 7.10.1 release notesIan Romanick1-0/+2
2011-03-02docs: Import 7.10.1 release notes from 7.10 branchIan Romanick1-0/+380
2011-03-02docs: Import 7.9.2 release notes from 7.9 branchIan Romanick1-0/+336
2011-03-02egl_dri2 x11: Workaround device_name xcb-dri2 bugBenjamin Franzke2-5/+16
This commit is basically a copy-over of the fix Chia-I Wu's commited to wayland: http://cgit.freedesktop.org/wayland/wayland-demos/commit/?id=1b6c0ed95 "Workaround an xcb-dri2 bug. xcb_dri2_connect_device_name generated by xcb-proto 1.6 is broken. It only works when the length of the driver name is a multiple of 4."
2011-03-02egl/wayland: build subdirs (wayland-drm) before dependBenjamin Franzke1-1/+1
Autogenerated files need to be generated first.
2011-03-02r300g: require DRM 2.3.0 (kernel 2.6.34)Marek Olšák11-109/+66
Running any older kernel is not recommended anyway.
2011-03-02r300g: do not use ioctl thread offloading on single-core machinesMarek Olšák3-1/+4
2011-03-02mesa: added gl_program_constants::MaxAddressOffsetBrian Paul4-2/+7
See https://bugs.freedesktop.org/show_bug.cgi?id=29418
2011-03-02mesa: increase INST_INDEX_BITS to 12Brian Paul1-1/+1
For more info see fd.o bug 29418.
2011-03-02Revert "mesa: reduce calls to _mesa_test_framebuffer_completeness()"Brian Paul1-1/+1
This reverts commit 1f9a0a4e6e5566c36c781add5f1e62af3efdfb58. This caused trouble with Lightsmark w/ i965 driver and fbo/fbo-blit-d24s8 (see bug 34894). It's probably something simple but no time to debug now.
2011-03-02vbo: fix error parameterBrian Paul1-1/+1
Spotted by Ian.
2011-03-02r300g: Silence 'control reaches end of non-void function' warning.Vinson Lee1-0/+4
Fixes this GCC warning. r300_hyperz.c: In function 'r300_get_hiz_func': r300_hyperz.c:65: warning: control reaches end of non-void function
2011-03-01gallium: Add u_format_rgtc.c to SConscript.Vinson Lee1-0/+1
2011-03-02i965: Maxinum the usage of urb space on SNB.Zou Nan hai1-10/+6
SNB has 64k urb space, we only use piece of them. The more urb space we alloc, the more concurrent vs threads we can run. push the urb space usage to the limit. Signed-off-by: Zou Nan hai <nanhai.zou@intel.com>
2011-03-02mesa/st: fix softpipe npot compressed mipmaps.Dave Airlie1-2/+2
this fixes fbo-generatemipmap-formats rgtc and s3tc in NPOT mode with softpipe. r600g fails to even get level 0 correct so have to look into that a bit further. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02softpipe: enable RGTC now that we have u_format support.Dave Airlie1-5/+0
2011-03-02mesa/st: fix generate mipmap for signed compressed formats.Dave Airlie1-32/+63
This was always converting to 8-bit per channel unsigned formats, which isn't suitable for RGTC signed formats, this special cases those two formats and converts to floats for those. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02gallium: add RGTC UNORM support to u_format.Dave Airlie6-2/+575
SNORM needs a bit of work in the state tracker in order for mipmap generation to work I believe. I'm also not sure that having unorm fetches for an snorm format is sane.
2011-03-02rgtc: remove GL types from this file.Dave Airlie1-10/+10
I'd like to share this file with gallium u_format stuff. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02rgtc: move the texel fetch into common unsigned/signed code.Dave Airlie2-65/+41
This function can be done in the include file also. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02rgtc: fix issues with compressor and signed types.Dave Airlie2-10/+23
With signed types we weren't hitting this test however the comment stating this doesn't happen often doesn't apply when using signed types since an all 0 block is quite common which isn't abs min or max. this fixes the limits correctly again also. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02rgtc: don't try to access off the end of the block.Dave Airlie1-2/+2
if the values are all in the last dword, the high bits can be 0, This fixes a valgrind warning I saw when playing with mipmaps. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02rgtc: move to using ubyte for fetch instead of chan + fix limitDave Airlie1-13/+13
My previous fix to the byte max was incorrect. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-02st/mesa: use RGTC for GL_COMPRESSED_RED/RG if possibleMarek Olšák1-2/+8
With proper fallback formats.
2011-03-01svga: reduce MAX_DMA_SIZE to 4MBBrian Paul1-1/+1
2011-03-01vbo: add vbo_always_unmap_buffers()Brian Paul3-1/+22
Drivers can call this function as needed. It tells the VBO module to always unmap the current glBegin/glEnd VBO when we flush. Otherwise it's possible to be in a flushed state but still have the VBO mapped.
2011-03-01vbo: generate GL_INVALID_VALUE for bad glVertexAttrib indexBrian Paul3-26/+26
2011-03-01i915g: remove extra semicolonBrian Paul1-1/+1
2011-03-01mesa: Revert most of 3158cc7d because it causes other breakageIan Romanick1-9/+4
2011-03-02r300g: accelerate resoure_copy_region for rgtcMarek Olšák1-1/+2
2011-03-01scons: Use Flex and Bison to generate lexer/parser files.Kenneth Graunke2-6/+21
This gets it building again here; I'll leave it up to the SCons maintainers to make further improvements.
2011-03-01glsl: Rename .lpp to .ll and .ypp to .yy.Kenneth Graunke3-2/+2
SCons has built-in support for .ll and .yy, but not .lpp and .ypp. Since there's no real benefit to using the old names, change them.
2011-03-02rgtc: fix fetch function limits for signed typesDave Airlie1-2/+2
2011-03-02rgtc: fixup mipmap generationDave Airlie1-2/+7
this allows swrast to pass mipmap generation for these formats.
2011-03-02swrast/rgtc: fix rendering issues introduced when fix constantsDave Airlie1-1/+1
The max value was wrong and this showed up in the piglit tests.
2011-03-02r600g: change the cross over point for 2d->1dDave Airlie1-1/+1
this fixes some rendering in the fbo-generatemipmap-formats test on my rv610. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-01mesa: Fix build breakage caused by c73e6ceIan Romanick3-11/+16
2011-03-01egl: Add EGL_WL_bind_wayland_displayBenjamin Franzke24-24/+729
2011-03-01Generate lexer and parser files for tarball creation processIan Romanick1-4/+10
2011-03-01Add generated parser / lexer files to gitignore listsIan Romanick3-0/+9
2011-03-01mesa: Fix some quirkiness of make tarballsIan Romanick1-29/+26
Among other benefits, parallel makes now work. Since many people have parallel builds by default (via MAKEFLAGS environment variable), this sames some irritation at release time...when there's usually not any other irritation already.
2011-03-01mesa: Remove nonexistent files from distribution listIan Romanick1-3/+1