Commit graph

22617 commits

Author SHA1 Message Date
José Fonseca
038d53cbdb pipebuffer: Add missing break statement to cache lookup logic.
Second loop was never run. Spotted by Keith.
2008-09-02 02:51:06 +09:00
José Fonseca
5c198f660a pipebuffer: Comment the slab code. Remove the freeSlabs list.
The freeSlabs list is not really needed as we free empty slabs immediately.
Time based cached is done separately.
2008-09-02 02:16:58 +09:00
José Fonseca
a6c7258394 scons: Optimize for speed, not size, with MSVC. 2008-09-02 02:16:58 +09:00
José Fonseca
f4d707b40e draw: Put INLINES where appropriate.
In the hope of MSVC inline some more functions, but without much result.
2008-09-02 02:16:58 +09:00
Keith Whitwell
5e184894d2 util: make timed_winsys os independent 2008-09-01 14:24:33 +01:00
Keith Whitwell
c118c654fa util: add func to return time as uint64 microseconds 2008-09-01 14:24:33 +01:00
Keith Whitwell
a4d04d71a4 add u_timed_winsys.[ch] 2008-09-01 14:24:33 +01:00
Keith Whitwell
a9345511d8 remove depend.bak in realclean 2008-09-01 14:24:33 +01:00
Michel Dänzer
55270310c5 Fix build by removing #include of removed dri_sarea.h.
Thanks to JohnFlux on IRC for pointing out the problem.
2008-09-01 11:43:29 +02:00
Patrice Mandin
0c47bd0374 nv30: set fp samplers with fragprog generation 2008-08-31 11:10:08 +02:00
José Fonseca
8c092def6c Remove CVS keywords.
Please remove CVS keywords when importing third-party code into the git
repository.
2008-08-31 17:43:20 +09:00
José Fonseca
ef823dd543 util: Fix compiler errors in the release build of C++ sources. 2008-08-31 17:40:08 +09:00
José Fonseca
8156c30a5d gallium: winsys/common no longer exists 2008-08-31 16:51:16 +09:00
Patrice Mandin
248831e741 nv30: activate fp texture units when needed, to get texturing 2008-08-30 22:30:03 +02:00
Jonathan White
3c81992676 Added command line option for Scons to select which version of MSVS to use. Versions 7.1, 8.0 and 9.0 are allowed. Usage is scons MSVS_VERSION=8.0. 2008-08-29 11:30:32 -06:00
Kristian Høgsberg
f56b569e9a DRI2: Drop sarea, implement swap buffers in the X server. 2008-08-29 12:13:14 -04:00
Younes Manton
4d9d192672 g3dvl: Buffer the entire frame before rendering. 2008-08-28 23:25:13 -04:00
Xiang, Haihao
7a2ab6d055 i965: force thread switch after IF/ELSE/ENDIF. partial fix for #16882.
A thread switch is implicitly invoked after the issuance of an IF/ELSE/ENDIF
instruction if necessary. Unfortunately it seems sometimes a forced thread
switch is needed.
2008-08-29 09:49:16 +08:00
Xiang, Haihao
6073b49c79 i965: mask control for BREAK/CONT/DO/WHILE. partial fix fox #16882 2008-08-29 09:28:08 +08:00
Xiang, Haihao
fd81433a4e i965: Push/pop instruction state. partial fix for #16882 2008-08-29 09:23:25 +08:00
Brian Paul
380385ab7d mesa: added test for very long fixed-function vertex programs 2008-08-28 15:22:44 -06:00
Brian Paul
ee87d7d9ec mesa: remove debug code 2008-08-28 15:21:44 -06:00
Brian Paul
6138ee9de0 mesa: bump MAX_INSN to 350 2008-08-28 15:15:00 -06:00
Brian Paul
cacf5f21ef mesa: dynamically grow the fixed function vertex program as needed
Don't use a fixed-size array.  Saves memory in most cases and avoids
potential overflow for long programs.
2008-08-28 15:11:04 -06:00
Brian Paul
5048457372 gallium: change the conditional which tests for combined Z+stencil buffers
The caller might be requesting 16-bit Z + 8-bit stencil be placed in a
PIPE_FORMAT_S8Z24 or PIPE_FORMAT_Z24S8 buffer.
2008-08-28 14:18:46 -06:00
Brian Paul
4e4cb02740 mesa: bump MAX_INSN to 300 2008-08-28 14:18:46 -06:00
José Fonseca
c46c07f6c6 pipebuffer: Fix/add detail to the under- overflow report messages. 2008-08-28 22:03:42 +09:00
José Fonseca
c6739e8cea pipebuffer: Check buffer over- & underflows when mapping/unmapping too. 2008-08-28 21:06:06 +09:00
Brian Paul
c5f0fd95a4 egl: free display ext data in xdri_eglTerminate(). 2008-08-27 16:20:19 -06:00
José Fonseca
a341586d03 gallium: s/PIPE_OS_WINDOWS/PIPE_SUBSYSTEM_WINDOWS_USER/ in p_thread.
PIPE_OS_WINDOWS is an umbrella for all Windows variants and subsystems,
PIPE_SUBSYSTEM_WINDOWS_USER is just for user-space windows (e.g., OpenGL),
and the thread primitives currently included in p_thread only support the
later.
2008-08-28 06:53:57 +09:00
Brian Paul
ee402e5ce2 gallium: better support for user-space interleaved arrays
Basically, set up one user-space wrapper for all arrays instead of
the individual arrays.
2008-08-27 14:42:50 -06:00
Brian Paul
ce40bc2ae0 gallium: in st_draw_vbo() try to detect interleaved arrays in a single VBO. 2008-08-27 13:22:54 -06:00
Brian Paul
8eb85f6f2a gallium: remove old assertions 2008-08-27 13:22:54 -06:00
Brian Paul
6f33b778ae gallium: call st_finish() in XMesaFlush() 2008-08-27 13:22:54 -06:00
Brian Paul
d29cf58b1d gallium: s/_glthread_Cond/unsigned/ in p_thread.h 2008-08-27 08:46:29 -06:00
Michal Krol
da66a7640d gallium: Add dummy defines of pipe_condvar for Windows to make it compile. 2008-08-27 11:06:08 +02:00
Brian Paul
0bb852fa49 gallium: thread wrapper clean-up
In p_thread.h replace _glthread_* functions with new pipe_* functions.
Remove other old cruft.
2008-08-26 16:35:12 -06:00
Brian Paul
bafefccff8 mesa: don't check for GLSL 1.2 to advertise GL 2.1
The GLSL 1.2 features are minor...
2008-08-26 16:13:39 -06:00
Brian Paul
9aeb6e7825 added 7.1 MD5 sums 2008-08-26 16:12:29 -06:00
Brian Paul
019b9529e5 change MESA_MINOR to 3 2008-08-26 15:59:06 -06:00
Brian Paul
17e9bbd5a4 7.1 updates from 7.2 branch 2008-08-26 15:58:42 -06:00
Brian Paul
b5ab3b7dfc cell: use SDK 3.0 by default 2008-08-26 14:10:29 -06:00
Timo Jyrinki
385d6b2e68 asst. html doc updates 2008-08-26 12:36:39 -06:00
Keith Whitwell
e6887a5752 draw: attempt atomic submit of large drawelements calls 2008-08-26 09:36:52 +01:00
Keith Whitwell
026e7731e5 vbo: seed initial max_element value with a more likely candidate 2008-08-26 09:36:47 +01:00
Brian
6ba9fb9b66 cell: asst fixes to get driver building/running again.
Note that SPU vertex transformation is disabled at this time.
2008-08-25 11:31:59 -06:00
Brian
60ac76175b gallium: added const qualifiers on some draw funcs 2008-08-25 11:30:57 -06:00
Brian
a644c5a850 gallium: include p_debug.h for non-HAVE_POSIX_MEMALIGN 2008-08-25 11:30:20 -06:00
Brian
fd06d01b80 gallium: include <sched.h> on linux to get sched_yield() proto 2008-08-25 11:29:39 -06:00
Brian Paul
80af50b35b mesa: glsl: regenerated file 2008-08-25 09:20:26 -06:00