summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* r300g: align the height of NPOT textures to POTMarek Olšák2010-04-101-1/+4
| | | | Needed by the CS checker.
* r300g: do not use tiling for scanout buffersMarek Olšák2010-04-101-1/+2
|
* glx: Support direct rendering pbuffersKristian Høgsberg2010-04-091-103/+123
| | | | | | | | We've supported indirect rendering pbuffers for a while, but not direct rendering pbuffers. The way we do this is by creating a hidden pixmap and wrap that in a GLX pbuffer. This only works when we have DRI2 on the server, but if the server doesn't have DRI2, it won't expose configs with pbuffer bits enabled.
* glx: Fix config chooser logic for 'mask' matchingKristian Høgsberg2010-04-091-5/+9
| | | | | | | | | | | | | | | | | | | | | When matching attributes using the 'mask' matching criteria, the spec says that "Only GLXFBConfigs for which the set bits of attribute include all the bits that are set in the requested value are considered. (Additional bits might be set in the attribute)." The current test returns true if the two bit masks have bits in common, specifically it matches even if the requested value has bits set that are not set in the fbconfig attribute. For example, an application asking for GLX_DRAWABLE_TYPE, GLX_PIXMAP_BIT | GLX_PBUFFER_BIT, as glxpbdemo does, will match fbconfigs that don't support pbuffer rendering, as long as they support pixmap rendering. Reviewed-by: Ian Romanick <[email protected]>
* Fix copyright headers.Chia-I Wu2010-04-1029-145/+174
| | | | | | Update the warranty disclaimer to use the more general "THE AUTHORS OR COPYRIGHT HOLDERS". This is done manually on files created by me. Hope that I do not miss anything.
* st/egl: Fix a typo in determining the render buffer.Chia-I Wu2010-04-101-1/+1
|
* llvmpipe: fix transposed stencil ref / values comparisonBrian Paul2010-04-091-1/+1
|
* Merge branch '7.8'Brian Paul2010-04-095-23/+82
|\
| * mesa: fix instruction indexing bugsBrian Paul2010-04-091-2/+2
| | | | | | | | | | | | | | We were looping over instructions but only looking at the 0th instruction's opcode. Fixes fd.o bug 27566.
| * docs: link to 7.8.2 release notesBrian Paul2010-04-081-0/+1
| |
| * docs: initial 7.8.2 release notesBrian Paul2010-04-081-0/+46
| |
| * progs/tests: added some debug code (disabled)Brian Paul2010-04-081-0/+13
| |
| * st/mesa: fix glDrawPixels(GL_DEPTH_COMPONENT) regressionBrian Paul2010-04-081-21/+20
| | | | | | | | | | | | | | | | | | | | Commit 1454f20a991ddda35f1a2ffda953012078b407ba caused the regression. When the vertex shader emitted both a texcoord and color we were grabbing the wrong vertex attributes. Fix the draw_quad() code to put texcoords in slot[1] and color in slot[2]. That's a bit cleaner than changing the vertex shader code. Tested with progs/tests/zreaddraw.c
| * intel: Call intel_prepare_render() in intelClear()Li Peng2010-04-082-2/+4
| | | | | | | | | | Make sure we have up to date buffers before we start looking at the tiling bits to determine how to clear.
* | st/mesa: new assertions to check array indexesBrian Paul2010-04-091-0/+3
| |
* | util: Fix typo in earlier commit.José Fonseca2010-04-091-1/+1
| |
* | util: ubyte_to_float and float_to_ubyte whenever possible.José Fonseca2010-04-091-0/+7
| | | | | | | | | | | | More accurate results. We should probably generalize these functions for more cases.
* | util: Get all depth stencil tests passing.José Fonseca2010-04-094-155/+497
| | | | | | | | | | Note the tests don't test all the paths, in particular stride, and ensuring the old value is preserved.
* | util: Add missing break statement.José Fonseca2010-04-091-0/+1
| |
* | util: Use consistent symbols in pack generator.José Fonseca2010-04-091-16/+16
| |
* | util: Reorder format tests -- group by format.José Fonseca2010-04-092-29/+32
| |
* | util: Add dedicated depth-stencil packing/unpacking functions.José Fonseca2010-04-0916-281/+1457
| | | | | | | | | | | | | | Depth-stencil manually written given that each one is very close to be a special case. u_format_zs.c's still untested.
* | gallium/unit: Silence warnings.José Fonseca2010-04-091-2/+2
| |
* | scons: Set -gstabs for C++ too.José Fonseca2010-04-091-1/+1
| |
* | st/xorg: Fix thinko.Corbin Simpson2010-04-091-0/+1
| |
* | nouveau: Import latest nouveau_class.h from renouveauBen Skeggs2010-04-093-2/+9027
| | | | | | | | And fix nv50_screen.c to compile against the updated header.
* | st/xorg: Fix bad paramf.Corbin Simpson2010-04-091-3/+1
| | | | | | | | Should be an integer param, according to docs.
* | r300g: Fill out dummy fence functions.Corbin Simpson2010-04-091-0/+24
| | | | | | | | xorg st needs them.
* | util: Include u_debug for debug_print_format.Corbin Simpson2010-04-091-0/+1
| | | | | | | | Caused fun linker errors on r600g.
* | st/egl: Move probe interface to native_probe.h.Chia-I Wu2010-04-092-37/+68
| | | | | | | | native.h is getting a little messy over time.
* | st/egl: Remove pbuffer from the native interface.Chia-I Wu2010-04-098-170/+105
| | | | | | | | | | A pbuffer is an EGL resource. It does not need a native display to create.
* | util: Set DXTN_LIBNAME to libtxc_dxtn.dylib on Mac OS X.Vinson Lee2010-04-091-0/+2
| |
* | util: Support PIPE_FORMAT_B4G4R4X4_UNORM and PIPE_FORMAT_R8G8B8X8_UNORM.José Fonseca2010-04-082-0/+16
| |
* | gallium: Add a couple more of D3D9 formats forgotten earlier.José Fonseca2010-04-081-0/+2
| |
* | util: (Almost) universal format translation function.José Fonseca2010-04-082-0/+180
| | | | | | | | Untested.
* | util: Describe, implement, and test the new D3D9 color formats.José Fonseca2010-04-087-7/+450
| |
* | gallium: Add missing D3D9 color formats.José Fonseca2010-04-081-0/+7
| |
* | util: is_array/mixed/etc is only meaningful for plain formats.José Fonseca2010-04-081-0/+10
| |
* | util: Keep const keyword when unpacking formats.José Fonseca2010-04-081-2/+2
| |
* | util: Reorder the code generated function so that they are grouped by format.José Fonseca2010-04-081-11/+7
| | | | | | | | Makes it easier to copy and paste.
* | intel: Call intel_prepare_render() in intelClear()Li Peng2010-04-082-2/+4
| | | | | | | | | | Make sure we have up to date buffers before we start looking at the tiling bits to determine how to clear.
* | draw llvm: hook up the generated function into the draw elts pathZack Rusin2010-04-081-33/+7
| | | | | | | | | | | | we were only using the jited function in the linear case, now drawelts correctly uses the same path. it results in a significant gain in real world apps (openarena went from 23fps to 29fps)
* | draw: Fix vertex buffer indexation.José Fonseca2010-04-081-1/+1
| |
* | util: Don't call util_dl_close(library) when util_format_s3tc_init is ↵José Fonseca2010-04-081-1/+0
| | | | | | | | | | | | | | | | successful." Otherwise the library will be unloaded and function pointers become invalid. This reverts commit bc2bc0306e4dd8c56bd66a8aabf2433f6689653d.
* | util: util_dl_close(library) before exiting util_format_s3tc_init.Vinson Lee2010-04-081-0/+2
| |
* | draw llvm: Remove unnecessary header.Vinson Lee2010-04-081-1/+0
| |
* | llvmpipe: Remove unnecessary header.Vinson Lee2010-04-081-1/+0
| |
* | Merge remote branch 'origin/7.8'Dave Airlie2010-04-086-20/+105
|\| | | | | | | | | | | | | Conflicts: Makefile configs/default src/mesa/main/version.h
| * texenvprogram: fix for ARB_draw_buffers.Dave Airlie2010-04-081-15/+28
| | | | | | | | | | | | | | piglit has a test called fbo-drawbuffers, this fails for me on r300g, and fixing the texenv program to use the DATA outputs fixes it. Signed-off-by: Dave Airlie <[email protected]>
| * docs: Update 7.8.1 release MD5 sumsmesa-7.8.1Ian Romanick2010-04-051-7/+7
| |