Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: remove gl_light::_SpotExpTable field | Brian Paul | 2012-02-10 | 1 | -1/+0 |
| | | | | | | | Just use pow() instead. Spot lights aren't too common and fixed-function lighting isn't as important as it used to me. This saves 32KB per context. Each table was 4KB and there's 8 lights. | ||||
* | gen_matypes: eliminate printf warnings | nobled | 2011-12-18 | 1 | -1/+6 |
| | | | | | The VERT_BIT_* defines are 64-bit values now, but the printf was still expecting a simple int. | ||||
* | mesa/x86: fix printf warning | Marek Olšák | 2011-12-17 | 1 | -1/+1 |
| | |||||
* | mesa: Optionally build a dricore support library (v3) | Christopher James Halse Rogers | 2011-02-11 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | This an adds --enable-shared-dricore option to configure. When enabled, DRI modules will link against a shared copy of the common mesa routines rather than statically linking these. This saves about 30MB on disc with a full complement of classic DRI drivers. v2: Only enable with a gcc-compatible compiler that handles rpath Handle DRI_CFLAGS without filter-out magic Build shared libraries with the full mklib voodoo Fix typos v3: Resolve conflicts with talloc removal patches Signed-off-by: Christopher James Halse Rogers <[email protected]> | ||||
* | mesa: s/movzxw/movzwl/ in read_rgba_span_x86.S | Dimitry Andric | 2011-01-24 | 1 | -1/+1 |
| | | | | | | | Fixes http://bugs.freedesktop.org/show_bug.cgi?id=33386 NOTE: This is a candidate for the 7.9 and 7.10 branches Signed-off-by: Brian Paul <[email protected]> | ||||
* | x86: Clean up header file inclusion in mmx.h. | Vinson Lee | 2010-12-30 | 1 | -1/+3 |
| | |||||
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 3 | -19/+19 |
| | |||||
* | x86: Silence unused variable warning on Mac OS X. | Vinson Lee | 2010-09-17 | 1 | -0/+2 |
| | | | | | Silences the following GCC warning on Mac OS X. x86/common_x86.c:58: warning: 'detection_debug' defined but not used | ||||
* | mesa: Disable the debug spam for x86 CPU detection with a compile-time flag. | Eric Anholt | 2010-08-25 | 1 | -7/+13 |
| | | | | | I don't know of any problems with CPU detection in years. Don't spam the user that was just looking to enable assertions with this stuff. | ||||
* | mesa: Move the x86 detection debug messages next to the detection. | Eric Anholt | 2010-08-25 | 2 | -33/+39 |
| | |||||
* | x86: Remove unnecessary header from sse.h. | Vinson Lee | 2010-08-16 | 1 | -2/+0 |
| | |||||
* | x86: Include missing headers in mmx.h. | Vinson Lee | 2010-08-15 | 1 | -0/+3 |
| | | | | | Include compiler.h for _ASMAPI symbol. Include mtypes.h for GLcontext symbol. | ||||
* | x86: Remove unnecessary header from 3dnow.h. | Vinson Lee | 2010-08-15 | 1 | -2/+0 |
| | |||||
* | glapi: Move to src/mapi/. | Chia-I Wu | 2010-05-07 | 1 | -1/+1 |
| | | | | Move glapi to src/mapi/{glapi,es1api,es2api}. | ||||
* | glapi: Move assembly dispatchers back into glapi/. | Chia-I Wu | 2010-05-07 | 1 | -1316/+0 |
| | |||||
* | glapi: regenerated files for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 1 | -70/+76 |
| | |||||
* | glapi: regenerated files for EXT_transform_feedback | Brian Paul | 2010-04-02 | 1 | -14/+27 |
| | |||||
* | glapi: Fix aliases to non-static functions. | Chia-I Wu | 2010-03-21 | 1 | -4/+4 |
| | | | | | | | The bug is triggered by 41a87a43e11c664935349f938022d58d3e22da4e. glBlitFramebuffer, for example, is an alias to the non-static glBlitFramebufferEXT. We should define glBlitFramebuffer as an alias to _dispatch_stub_NNN. | ||||
* | glapi: Correctly generate static disatches for X86. | Chia-I Wu | 2010-03-20 | 1 | -62/+4 |
| | | | | | The entry point names, instead of the function name, should be used to test if the entry point should be statically dispatched. | ||||
* | APPLE_object_purgeable: autogenerated files | Chris Wilson | 2010-03-04 | 1 | -10/+13 |
| | |||||
* | Remove support for GCC older than 3.3.0 | Ian Romanick | 2010-03-03 | 1 | -1/+1 |
| | | | | Signed-off-by: Ian Romanick <[email protected]> | ||||
* | glapi: drop SOLARIS_THREADS | George Sapountzis | 2010-03-01 | 1 | -1/+1 |
| | | | | It seems that SOLARIS_THREADS is not used and does not work. | ||||
* | glapi: GL_OES_EGL_image autogenerated files | Kristian Høgsberg | 2010-02-24 | 1 | -0/+2 |
| | |||||
* | Replace the _mesa_*printf() wrappers with the plain libc versions | Kristian Høgsberg | 2010-02-19 | 1 | -1/+1 |
| | |||||
* | swrast/sse: Fix _mesa_sse_transform_pointsX_3d_no_rot | Pauli Nieminen | 2010-02-04 | 2 | -0/+2 |
| | | | | | | | | | | | | PXOR user in code were causing the lowest SP float register to have NaN values which made all math operations in that slot fail. Correct istruction to clear float registers is XORPS which handles single precission floats correctly. Fixes progs/tests/fog in swrast SSE mode. Now the correct commit instead of 66d09e4a2a6b770ddb which is not even close of correct fix for the bug. | ||||
* | Revert "mesa: fix transform_points_3d_no_rot using undefined values in %xmm0" | Pauli Nieminen | 2010-02-04 | 2 | -2/+0 |
| | | | | This reverts commit 4c31632817a0bde28ad6c9ee8032d838ce4b7bfb. | ||||
* | Merge branch 'mesa_7_7_branch' | Brian Paul | 2010-01-25 | 3 | -5/+5 |
|\ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/intel/intel_screen.c src/mesa/drivers/dri/intel/intel_swapbuffers.c src/mesa/drivers/dri/r300/r300_emit.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_tex.c src/mesa/drivers/dri/r300/r300_texstate.c | ||||
| * | x86: Do not build read_rgba_span_x86.S on Mac OS X. | Vinson Lee | 2010-01-23 | 1 | -2/+2 |
| | | | | | | | | | | read_rgba_span_x86.S uses the pseudo-ops .hidden and .type which are not recognized on Mac OS X. | ||||
| * | x86: Do not use .hidden pseudo-op on Mac OS X. | Vinson Lee | 2010-01-23 | 1 | -2/+2 |
| | | | | | | | | The .hidden directive is an unknown pseudo-op on Mac OS X. | ||||
| * | glapi: Do not use .type pseudo-op on Mac OS X. | Vinson Lee | 2010-01-23 | 1 | -1/+1 |
| | | | | | | | | The .type directive is an unknown pseudo-op on Mac OS X. | ||||
* | | Merge remote branch 'origin/opengl-es-v2' | Chia-I Wu | 2010-01-20 | 1 | -1/+1 |
|\ \ | |||||
| * \ | Merge branch 'master' into opengl-es-v2 | Chia-I Wu | 2010-01-12 | 3 | -36/+37 |
| |\ \ | | | | | | | | | | | | | | | | | Conflicts: src/mesa/main/dd.h | ||||
| * | | | glapi: Include headers with directory prefixes. | Chia-I Wu | 2009-11-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | This allows different sets of generated sources and headers to be used. Signed-off-by: Chia-I Wu <[email protected]> | ||||
* | | | | Merge branch 'mesa_7_7_branch' | Jakob Bornecrantz | 2010-01-14 | 1 | -1/+0 |
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/| | | | | | | | Conflicts: src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/util/Makefile src/gallium/drivers/r300/r300_state_derived.c | ||||
| * | | x86: Remove unnecessary header from x86_xform.c. | Vinson Lee | 2010-01-11 | 1 | -1/+0 |
| | | | |||||
* | | | Merge branch 'mesa_7_7_branch' | Brian Paul | 2010-01-04 | 1 | -12/+2 |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: docs/relnotes.html src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/r300/r300_cs.h src/mesa/drivers/dri/i965/brw_wm_surface_state.c src/mesa/main/enums.c | ||||
| * | | x86: Silence printf format warnings. | Vinson Lee | 2010-01-01 | 1 | -12/+2 |
| | | | |||||
* | | | mesa: added dispatch for GL_NV_conditional_render extension | Brian Paul | 2009-12-31 | 1 | -13/+15 |
| | | | |||||
* | | | mesa: regenerate API files related to GL_EXT_draw_buffers2 | Brian Paul | 2009-12-29 | 1 | -13/+19 |
| | | | |||||
* | | | Merge branch 'mesa_7_7_branch' | Brian Paul | 2009-12-21 | 1 | -0/+2 |
|\| | | | | | | | | | | | | | | | | | Conflicts: src/mesa/main/version.h src/mesa/state_tracker/st_atom_shader.c | ||||
| * | | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Ian Romanick | 2009-12-15 | 1 | -0/+2 |
| |\ \ | | | | | | | | | | | | | | | | | Conflicts: src/gallium/drivers/softpipe/sp_quad_blend.c | ||||
| | * | | x86: ifdef out unused function cptr. | Vinson Lee | 2009-12-15 | 1 | -0/+2 |
| | | | | |||||
* | | | | tnl: Replace deprecated FogCoordPtr with AttribPtr[_TNL_ATTRIB_FOG] | Eric Anholt | 2009-11-19 | 1 | -1/+1 |
| | | | | |||||
* | | | | tnl: Replace deprecated ColorPtr[] with AttribPtr or new BackfaceColorPtr. | Eric Anholt | 2009-11-19 | 1 | -2/+2 |
| | | | | |||||
* | | | | tnl: Replace deprecated IndexPtr[] with AttribPtr[] or new BackfaceIndexPtr | Eric Anholt | 2009-11-19 | 1 | -1/+1 |
| | | | | |||||
* | | | | tnl: Replace deprecated ObjPtr with AttribPtr[_TNL_ATTRIB_POS] | Eric Anholt | 2009-11-19 | 1 | -1/+1 |
| | | | | |||||
* | | | | tnl: Replace deprecated TexCoordPtr with AttribPtr[_TNL_ATTRIB_TEX*] | Eric Anholt | 2009-11-19 | 1 | -4/+4 |
| | | | | |||||
* | | | | tnl: Replace NormalPtr with AttribPtr[_TNL_ATTRIB_NORMAL] | Eric Anholt | 2009-11-19 | 1 | -1/+1 |
|/ / / | |||||
* | / | ARB_fbo: Regenerate files from previous commits. | Ian Romanick | 2009-11-17 | 1 | -0/+1 |
| |/ |/| | |||||
* | | x86: Fix the test for negative pixel count in optimized rgb565 spans. | Eric Anholt | 2009-10-30 | 1 | -1/+1 |
| | | | | | | | | | | There's a bunch of bogus looking stuff the count handling in this code, but this fixes the testcases we have. |