summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* radeon: Add DRI2 flush extension to so we synchronize properly.Mario Kleiner2010-08-0210-0/+77
| | | | | | | | | | | | | | | | | When DRI2 swap buffer is pending (copy buffer not pageflipping) we need to make sure we have the flush extension so radeon doesn't resume rendering on the not yet blitted front buffer. Modified version of Jerome's patch to add flush extension in the correct place. This prepares a possible fix for: https://bugs.freedesktop.org/show_bug.cgi?id=28341 https://bugs.freedesktop.org/show_bug.cgi?id=28410 Signed-off-by: Jerome Glisse <[email protected]> Signed-off-by: Mario Kleiner <[email protected]>
* r600: fix sin,cos functions on r600Andre Maasikas2010-08-021-9/+133
| | | | | | | | | | | r600 doesnt need the same normalization as r700 - instead it requires range to be truncated to -pi..pi I left the range trunc also effective on r700 althouch according the docs it has sufficent range (-512*PI, +512*PI). The instructions seem to be used not too often to cause perf loss because of this Based on patches and testing by Conn Clark and Alain Perrot
* mesa: Remove inclusion of compiler.h from mtypes.h.Vinson Lee2010-07-3110-5/+16
| | | | | | | mtypes.h does not use any symbols from compiler.h. Also add the required headers for files that depended on symbols from compiler.h but were indirectly including compiler.h through mtypes.h.
* mesa: Remove unnecessary header from mm.h.Vinson Lee2010-07-311-3/+0
|
* mesa: Add headers containing sybmols used by mm.c.Vinson Lee2010-07-311-0/+5
|
* mesa: Reduce header file inclusion in get.h.Vinson Lee2010-07-311-1/+1
| | | | get.h only needs the GL headers.
* mesa: Include missing headers in vtxfmt.h.Vinson Lee2010-07-311-0/+3
| | | | | Include compiler.h for INLINE symbol. Include mtypes.h for GLcontext symbol.
* mesa: Include missing header in shared.h.Vinson Lee2010-07-311-0/+1
| | | | Include mtypes.h for GLcontext symbol.
* mesa: Include missing header in restart.h.Vinson Lee2010-07-311-0/+1
|
* mesa: Include missing headers in renderbuffer.h.Vinson Lee2010-07-311-0/+5
|
* mesa: Include missing header in remap.h.Vinson Lee2010-07-311-0/+1
| | | | Include compiler.h for INLINE symbol.
* mesa: Remove unnecessary headers.Vinson Lee2010-07-316-6/+0
|
* swrast: Remove unnecessary headers.Vinson Lee2010-07-316-6/+0
|
* tnl: Remove unnecessary headers.Vinson Lee2010-07-318-8/+0
|
* mesa: Include missing header in pixelstore.h.Vinson Lee2010-07-301-0/+1
| | | | Include mtypes.h for GLcontext symbol.
* mesa: Include missing headers in nvprogram.h.Vinson Lee2010-07-301-0/+2
|
* st/mesa: better handling of indirect addressing of temp/const register filesBrian Paul2010-07-301-4/+24
| | | | | | | | With gl_program::IndirectRegisterFiles we can distinguish between indirect addressing of constants vs. temporaries. In the case of temporaries, declare all temps up front sequentially. Fixes fd.o bug 29305.
* mesa: added gl_program::IndirectRegisterFiles fieldBrian Paul2010-07-308-210/+234
| | | | | | | | Now drivers, etc. can know which register files are accessed with indirect addressing. Before we just checked gl_program::NumAddressRegs but didn't know if that was the constant buffer, temp regs, or what. The only user of this new field so far will be the gallium state tracker.
* mesa: Add missing header to multisample.h.Vinson Lee2010-07-301-0/+1
| | | | Include mtypes.h for GLcontext symbol.
* mesa: Remove unnecessary header from colormac.h.Vinson Lee2010-07-301-1/+1
|
* mesa: Remove unnecessary headers.Vinson Lee2010-07-306-6/+0
|
* mesa: Include macros.h in files that use symbols from macros.h.Vinson Lee2010-07-3011-0/+11
| | | | Don't rely on inclusion of other files that already include macros.h.
* mesa: Include macros.h in attrib.c for COPY_4FV symbol.Vinson Lee2010-07-301-0/+1
|
* intel: Add missing header to intel_context.c.Vinson Lee2010-07-301-0/+1
| | | | | Fixes "implicit declaration of function _mesa_get_incomplete_framebuffer" warning.
* mesa: Reduce clip.h header file inclusion.Vinson Lee2010-07-301-1/+1
|
* mesa: Add missing header to framebuffer.h.Vinson Lee2010-07-291-0/+1
| | | | Include mtypes.h for GLvisual and GLcontext symbols.
* mesa: Add missing header to fboject.h.Vinson Lee2010-07-291-0/+1
| | | | Add mtypes.h for GLcontext symbol.
* mesa: Add missing header to texgetimage.h.Vinson Lee2010-07-291-0/+1
|
* mesa: Add missing header to texrender.h.Vinson Lee2010-07-291-0/+1
| | | | Add mtypes.h for GLcontext symbol.
* mesa: Add missing header and forward declarations to uniforms.h.Vinson Lee2010-07-291-0/+4
|
* mesa: Add missing headers to viewport.h.Vinson Lee2010-07-291-0/+2
|
* mesa: Add missing header to depthstencil.h.Vinson Lee2010-07-291-0/+1
| | | | Add mtypes.h for GLcontext symbol.
* mesa: Add missing headers to debug.h.Vinson Lee2010-07-291-0/+3
|
* intel: Add missing header.Vinson Lee2010-07-291-0/+1
| | | | Add context.h for NEED_SECONDARY_COLOR symbol.
* dri: Add missing header to dri_metaops.c.Vinson Lee2010-07-291-0/+1
| | | | Add context.h for FLUSH_VERTICES symbol.
* mesa: Reduce clear.h header file inclusion.Vinson Lee2010-07-291-1/+1
|
* mesa: Reduce bufferobj.h header file inclusion.Vinson Lee2010-07-291-1/+1
| | | | | Directly include mtypes.h instead of including context.h to include mtypes.h.
* mesa: Remove unnecessary headers.Vinson Lee2010-07-292-2/+0
|
* intel: Declare the various tracked state variables using "extern"Kristian Høgsberg2010-07-291-62/+62
|
* intel: Don't depend on context config values when picking texture formatsKristian Høgsberg2010-07-291-24/+12
|
* mesa: implement RCC opcodeBrian Paul2010-07-291-0/+54
|
* mesa: update table of opcodes used by GLSLBrian Paul2010-07-291-8/+8
|
* r600: since 8744c36e added asserts - use another random register for shader ↵Andre Maasikas2010-07-291-1/+1
| | | | with no output
* mesa: Reduce arrayobj.h header file inclusion.Vinson Lee2010-07-281-1/+1
| | | | | Directly include mtypes.h instead of including context.h to include mtypes.h.
* mesa: Remove unnecessary header.Vinson Lee2010-07-281-1/+0
|
* gallium: Use unified pipe_context::draw_vbo.Chia-I Wu2010-07-291-100/+69
| | | | Update u_draw_quad, st/vega, and st/mesa to use pipe_context::draw_vbo.
* mesa: Remove unnecessary header.Vinson Lee2010-07-281-1/+1
|
* intel: Implement EGL_KHR_surfaceless extensionKristian Høgsberg2010-07-284-8/+28
|
* intel: Remove unused intel/server filesKristian Høgsberg2010-07-275-397/+2
|
* i965: Fix reversed naming of the operations in compute-to-mrf optimization.Eric Anholt2010-07-263-6/+11
| | | | | Also fix up comments, so that the difference between the two passes is clarified.