Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-30 | mesa: Include macros.h in attrib.c for COPY_4FV symbol. | Vinson Lee | |
2010-07-30 | intel: Add missing header to intel_context.c. | Vinson Lee | |
Fixes "implicit declaration of function _mesa_get_incomplete_framebuffer" warning. | |||
2010-07-30 | mesa: Reduce clip.h header file inclusion. | Vinson Lee | |
2010-07-29 | mesa: Add missing header to framebuffer.h. | Vinson Lee | |
Include mtypes.h for GLvisual and GLcontext symbols. | |||
2010-07-29 | mesa: Add missing header to fboject.h. | Vinson Lee | |
Add mtypes.h for GLcontext symbol. | |||
2010-07-29 | mesa: Add missing header to texgetimage.h. | Vinson Lee | |
2010-07-29 | mesa: Add missing header to texrender.h. | Vinson Lee | |
Add mtypes.h for GLcontext symbol. | |||
2010-07-29 | mesa: Add missing header and forward declarations to uniforms.h. | Vinson Lee | |
2010-07-29 | mesa: Add missing headers to viewport.h. | Vinson Lee | |
2010-07-29 | mesa: Add missing header to depthstencil.h. | Vinson Lee | |
Add mtypes.h for GLcontext symbol. | |||
2010-07-29 | mesa: Add missing headers to debug.h. | Vinson Lee | |
2010-07-29 | intel: Add missing header. | Vinson Lee | |
Add context.h for NEED_SECONDARY_COLOR symbol. | |||
2010-07-29 | dri: Add missing header to dri_metaops.c. | Vinson Lee | |
Add context.h for FLUSH_VERTICES symbol. | |||
2010-07-29 | mesa: Reduce clear.h header file inclusion. | Vinson Lee | |
2010-07-29 | mesa: Reduce bufferobj.h header file inclusion. | Vinson Lee | |
Directly include mtypes.h instead of including context.h to include mtypes.h. | |||
2010-07-29 | mesa: Remove unnecessary headers. | Vinson Lee | |
2010-07-29 | intel: Declare the various tracked state variables using "extern" | Kristian Høgsberg | |
2010-07-29 | intel: Don't depend on context config values when picking texture formats | Kristian Høgsberg | |
2010-07-29 | mesa: implement RCC opcode | Brian Paul | |
2010-07-29 | mesa: update table of opcodes used by GLSL | Brian Paul | |
2010-07-29 | r600: since 8744c36e added asserts - use another random register for shader ↵ | Andre Maasikas | |
with no output | |||
2010-07-28 | mesa: Reduce arrayobj.h header file inclusion. | Vinson Lee | |
Directly include mtypes.h instead of including context.h to include mtypes.h. | |||
2010-07-28 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-07-29 | gallium: Use unified pipe_context::draw_vbo. | Chia-I Wu | |
Update u_draw_quad, st/vega, and st/mesa to use pipe_context::draw_vbo. | |||
2010-07-28 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-07-28 | intel: Implement EGL_KHR_surfaceless extension | Kristian Høgsberg | |
2010-07-27 | intel: Remove unused intel/server files | Kristian Høgsberg | |
2010-07-26 | i965: Fix reversed naming of the operations in compute-to-mrf optimization. | Eric Anholt | |
Also fix up comments, so that the difference between the two passes is clarified. | |||
2010-07-26 | i965: Clean up a few magic numbers to use brw_defines.h defs. | Eric Anholt | |
2010-07-26 | i965: Use MIN2, MAX2 instead of rolling our own. | Eric Anholt | |
2010-07-26 | i965: Fold the "is arithmetic" bit of 965 opcodes into the opcode list. | Eric Anholt | |
2010-07-26 | i965: Remove some duped register size/count definitions | Eric Anholt | |
2010-07-26 | i965: Move the GRF-to-MRF optimizations to brw_optimize.c. | Eric Anholt | |
2010-07-26 | i965: Improve (i.e. remove) some grf-to-mrf unnecessary moves | Benjamin Segovia | |
Several routines directly analyze the grf-to-mrf moves from the Gen binary code. When it is possible, the mov is removed and the message register is directly written in the arithmetic instruction Also redundant mrf-to-grf moves are removed (frequently for example, when sampling many textures with the same uv) Code was tested with piglit, warsow and nexuiz on an Ironlake machine. No regression was found there Note that the optimizations are *deactivated* on Gen4 and Gen6 since I did test them properly yet. No reason there are bugs but who knows The optimizations are currently done in branch free programs *only*. Considering branches is more complicated and there are actually two paths: one for branch free programs and one for programs with branches Also some other optimizations should be done during the emission itself but considering that some code is shader between vertex shaders (AOS) and pixel shaders (SOA) and that we may have branches or not, it is pretty hard to both factorize the code and have one good set of strategies | |||
2010-07-26 | i965: Allow VS MOVs to use immediate constants. | Eric Anholt | |
Clarifies program assembly, and with a little tweak to always use constant_map, we could cut down on constant buffer payload. | |||
2010-07-23 | mesa: Fix Cygwin build with llvm enabled. | Vinson Lee | |
On Cygwin locale_t in not available but 'llvm-config --cppflags' adds the compiler flag -D_GNU_SOURCE to the build. | |||
2010-07-23 | gallium: Fix build with llvm installed in non-standard location | Christopher James Halse Rogers | |
The es1, es2 and gl state trackers include draw_pipe.h, which includes the llvm headers if MESA_LLVM is true, so we also need to add the llvm seachpaths. Similarly, gallivm and other gallium drivers need LLVM_CFLAGS to build when enabled. Also fix xorg drivers, they didn't include LDFLAGS. | |||
2010-07-23 | st/mesa: get rid of unneeded ureg_writemask() | Brian Paul | |
2010-07-23 | st/mesa: fix bug in emit_adjusted_wpos() | Brian Paul | |
If we bias x,y we still need to pass through z,w in case the shader reads gl_FragCoord.z or .w. Fixes fd.o bug 29183 (piglit glsl-bug-22603). NOTE: This is a candidate for the 7.8 branch. | |||
2010-07-23 | i965: Cleanly fail programs with unsupported array access. | Eric Anholt | |
This should be more useful for developers and for bug triaging than just generating wrong code. | |||
2010-07-23 | i965: Add support for VS relative addressing of temporary arrays. | Eric Anholt | |
Fixes glsl-vs-arrays. Bug #27388. | |||
2010-07-22 | glsl: remove invalid _mesa_problem() call | Brian Paul | |
Fixes fd.o bug 29206. | |||
2010-07-22 | i965: Respect VS/VP point size result when enabled. | Eric Anholt | |
Fixes glsl-vs-point-size. | |||
2010-07-22 | i965: Fix the disasm output for da16 src widths. | Eric Anholt | |
This has confused me twice now. It's a fixed width of 4 (usually a region description of <4,4,1>), not 1. If it was 1, we'd have been skipping all over register space. | |||
2010-07-22 | i965: Avoid extra MOV in VS indirect register reads. | Eric Anholt | |
2010-07-22 | i965: Fix up VS temporary array access for fixed index offset != 0. | Eric Anholt | |
2010-07-22 | r600: Flip point sprite coordinates when rendering to an FBO. | Henri Verbeet | |
This supersedes http://lists.freedesktop.org/archives/mesa-dev/2010-July/001442.html. | |||
2010-07-21 | i965: In the VS, multiply the address reg by the appropriate register size. | Eric Anholt | |
The ARL value is increments of vec4 in the register file. But PROGRAM_TEMPORARY or PROGRAM_INPUT are stored as vec4s interleaved between the two verts being executed (thus a vec8 each), compared to PROGRAM_STATE_VAR being packed vec4s. Fixes: glsl-vs-arrays-2 glsl-vs-mov-after-deref (without regressing glsl-vs-arrays-3) | |||
2010-07-21 | i965: Clean up brw_dp_READ_4_vs() now that it has fewer options to support. | Eric Anholt | |
2010-07-21 | i965: Support relative addressed VS constant reads using the appropriate msg. | Eric Anholt | |
The previous support was overly complicated by trying to use the same 1-OWORD message for both offsets. |