Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | r300g: align the height of NPOT textures to POT | Marek Olšák | 2010-04-10 | 1 | -1/+4 |
| | | | | Needed by the CS checker. | ||||
* | r300g: do not use tiling for scanout buffers | Marek Olšák | 2010-04-10 | 1 | -1/+2 |
| | |||||
* | glx: Support direct rendering pbuffers | Kristian Høgsberg | 2010-04-09 | 1 | -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' matching | Kristian Høgsberg | 2010-04-09 | 1 | -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 Wu | 2010-04-10 | 29 | -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 Wu | 2010-04-10 | 1 | -1/+1 |
| | |||||
* | llvmpipe: fix transposed stencil ref / values comparison | Brian Paul | 2010-04-09 | 1 | -1/+1 |
| | |||||
* | Merge branch '7.8' | Brian Paul | 2010-04-09 | 5 | -23/+82 |
|\ | |||||
| * | mesa: fix instruction indexing bugs | Brian Paul | 2010-04-09 | 1 | -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 notes | Brian Paul | 2010-04-08 | 1 | -0/+1 |
| | | |||||
| * | docs: initial 7.8.2 release notes | Brian Paul | 2010-04-08 | 1 | -0/+46 |
| | | |||||
| * | progs/tests: added some debug code (disabled) | Brian Paul | 2010-04-08 | 1 | -0/+13 |
| | | |||||
| * | st/mesa: fix glDrawPixels(GL_DEPTH_COMPONENT) regression | Brian Paul | 2010-04-08 | 1 | -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 Peng | 2010-04-08 | 2 | -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 indexes | Brian Paul | 2010-04-09 | 1 | -0/+3 |
| | | |||||
* | | util: Fix typo in earlier commit. | José Fonseca | 2010-04-09 | 1 | -1/+1 |
| | | |||||
* | | util: ubyte_to_float and float_to_ubyte whenever possible. | José Fonseca | 2010-04-09 | 1 | -0/+7 |
| | | | | | | | | | | | | More accurate results. We should probably generalize these functions for more cases. | ||||
* | | util: Get all depth stencil tests passing. | José Fonseca | 2010-04-09 | 4 | -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é Fonseca | 2010-04-09 | 1 | -0/+1 |
| | | |||||
* | | util: Use consistent symbols in pack generator. | José Fonseca | 2010-04-09 | 1 | -16/+16 |
| | | |||||
* | | util: Reorder format tests -- group by format. | José Fonseca | 2010-04-09 | 2 | -29/+32 |
| | | |||||
* | | util: Add dedicated depth-stencil packing/unpacking functions. | José Fonseca | 2010-04-09 | 16 | -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é Fonseca | 2010-04-09 | 1 | -2/+2 |
| | | |||||
* | | scons: Set -gstabs for C++ too. | José Fonseca | 2010-04-09 | 1 | -1/+1 |
| | | |||||
* | | st/xorg: Fix thinko. | Corbin Simpson | 2010-04-09 | 1 | -0/+1 |
| | | |||||
* | | nouveau: Import latest nouveau_class.h from renouveau | Ben Skeggs | 2010-04-09 | 3 | -2/+9027 |
| | | | | | | | | And fix nv50_screen.c to compile against the updated header. | ||||
* | | st/xorg: Fix bad paramf. | Corbin Simpson | 2010-04-09 | 1 | -3/+1 |
| | | | | | | | | Should be an integer param, according to docs. | ||||
* | | r300g: Fill out dummy fence functions. | Corbin Simpson | 2010-04-09 | 1 | -0/+24 |
| | | | | | | | | xorg st needs them. | ||||
* | | util: Include u_debug for debug_print_format. | Corbin Simpson | 2010-04-09 | 1 | -0/+1 |
| | | | | | | | | Caused fun linker errors on r600g. | ||||
* | | st/egl: Move probe interface to native_probe.h. | Chia-I Wu | 2010-04-09 | 2 | -37/+68 |
| | | | | | | | | native.h is getting a little messy over time. | ||||
* | | st/egl: Remove pbuffer from the native interface. | Chia-I Wu | 2010-04-09 | 8 | -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 Lee | 2010-04-09 | 1 | -0/+2 |
| | | |||||
* | | util: Support PIPE_FORMAT_B4G4R4X4_UNORM and PIPE_FORMAT_R8G8B8X8_UNORM. | José Fonseca | 2010-04-08 | 2 | -0/+16 |
| | | |||||
* | | gallium: Add a couple more of D3D9 formats forgotten earlier. | José Fonseca | 2010-04-08 | 1 | -0/+2 |
| | | |||||
* | | util: (Almost) universal format translation function. | José Fonseca | 2010-04-08 | 2 | -0/+180 |
| | | | | | | | | Untested. | ||||
* | | util: Describe, implement, and test the new D3D9 color formats. | José Fonseca | 2010-04-08 | 7 | -7/+450 |
| | | |||||
* | | gallium: Add missing D3D9 color formats. | José Fonseca | 2010-04-08 | 1 | -0/+7 |
| | | |||||
* | | util: is_array/mixed/etc is only meaningful for plain formats. | José Fonseca | 2010-04-08 | 1 | -0/+10 |
| | | |||||
* | | util: Keep const keyword when unpacking formats. | José Fonseca | 2010-04-08 | 1 | -2/+2 |
| | | |||||
* | | util: Reorder the code generated function so that they are grouped by format. | José Fonseca | 2010-04-08 | 1 | -11/+7 |
| | | | | | | | | Makes it easier to copy and paste. | ||||
* | | intel: Call intel_prepare_render() in intelClear() | Li Peng | 2010-04-08 | 2 | -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 path | Zack Rusin | 2010-04-08 | 1 | -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é Fonseca | 2010-04-08 | 1 | -1/+1 |
| | | |||||
* | | util: Don't call util_dl_close(library) when util_format_s3tc_init is ↵ | José Fonseca | 2010-04-08 | 1 | -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 Lee | 2010-04-08 | 1 | -0/+2 |
| | | |||||
* | | draw llvm: Remove unnecessary header. | Vinson Lee | 2010-04-08 | 1 | -1/+0 |
| | | |||||
* | | llvmpipe: Remove unnecessary header. | Vinson Lee | 2010-04-08 | 1 | -1/+0 |
| | | |||||
* | | Merge remote branch 'origin/7.8' | Dave Airlie | 2010-04-08 | 6 | -20/+105 |
|\| | | | | | | | | | | | | | Conflicts: Makefile configs/default src/mesa/main/version.h | ||||
| * | texenvprogram: fix for ARB_draw_buffers. | Dave Airlie | 2010-04-08 | 1 | -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.1 | Ian Romanick | 2010-04-05 | 1 | -7/+7 |
| | |