Commit graph

13639 commits

Author SHA1 Message Date
Keith Whitwell
d08cd68d3f mesa: fast-track glColor and similar calls when not immediate mode rendering
Often these are mixed in with draw arrays calls, etc.  Try not to get
the whole immediate rendering state machine going when we receive one
of these on their own.
2008-03-10 23:31:50 +00:00
Keith Whitwell
7375369fb3 gallium: fix compiler warning 2008-03-10 23:31:50 +00:00
Keith Whitwell
3f5b9f4ba4 gallium: use the same bypass_clipping logic on all vs paths 2008-03-10 23:31:50 +00:00
Keith Whitwell
6d5ee6d9a4 gallium: enable bug workaround in draw_vertex_cache_invalidate 2008-03-10 23:31:50 +00:00
Brian
d5692cb349 gallium: new surface/context tracker (sct) module
Will be used for tracking the surfaces and textures which are bound/used by
contexts.
2008-03-10 17:22:18 -06:00
Brian
5b82d551b7 cell: sync up with sampler/texture state-setting changes 2008-03-10 16:43:36 -06:00
José Fonseca
3102268154 gallium: Use hardcoded breakpoints on x86 targets. 2008-03-10 21:18:00 +00:00
José Fonseca
34497eabc8 Some notes about debugging 2008-03-10 21:15:31 +00:00
José Fonseca
01bd21eef8 gallium: Import Dennis Smit cpu detection code.
It still needs a slight code massasing to integrate with the rest of
gallium (namely mapping the OS_* ARCH_* defines), but I'm commiting anyway
so that it is available to be used when somebody needs it.
2008-03-10 16:45:19 +00:00
José Fonseca
b721bc8792 gallium: WinCE portability fixes. 2008-03-10 14:00:13 +00:00
Keith Whitwell
b041dbe901 gallium: avoid deleting currently-bound CSO's on cache destruction 2008-03-09 20:23:05 +00:00
Keith Whitwell
aff4cf19a7 draw: cope with binding NULL vertex shader (on context delete, for instance) 2008-03-09 20:23:05 +00:00
Keith Whitwell
d8d6569e28 cso: fix line endings 2008-03-09 20:23:04 +00:00
Keith Whitwell
ac87bc1835 cso: Use MALLOC 2008-03-09 20:23:04 +00:00
Keith Whitwell
5d802d8c84 cso: add a higher-level interface which does all pipe interactions to set a given state 2008-03-09 20:23:04 +00:00
Keith Whitwell
99691f38c2 gallium: add some commonly implemented bits of hw state 2008-03-09 20:23:03 +00:00
José Fonseca
5d1fc69041 scons: Ensure the paths to the WINDDK's executables are found before the MSVC ones. 2008-03-09 20:14:31 +00:00
José Fonseca
fc96aec9b7 gallium: Document debug_printf usage. 2008-03-08 17:36:19 +00:00
Michal Krol
8143adafdd gallium: Surround externs with extern "C". 2008-03-06 19:57:41 +01:00
Keith Whitwell
4528287e04 gallium: michel's patch to rework texture/sampler binding interface
Bind all the samplers/textures at once rather than piecemeal.
This is easier for drivers to understand.
2008-03-05 10:56:49 +01:00
José Fonseca
b1922de9f3 gallium: Use custom vsnprintf in WINDDK.
EngDebugPrint does not handle float point arguments, so we need to use
our own vsnprintf implementation.
2008-03-05 11:39:11 +01:00
José Fonseca
5aa108214a scons: Preliminary code for quieting command lines. 2008-03-05 11:39:11 +01:00
Keith Whitwell
19cc2e3631 draw: dont' compute clipmask or apply viewport when not clipping (rename bypass_clipping to coords_in_window_space? 2008-03-04 18:51:50 +01:00
Michel Dänzer
e2a91c294e gallium: Add missing file for scons build. 2008-03-04 18:32:43 +01:00
Michel Dänzer
5b9b5c850f gallium: Fix scons condition for building the xlib winsys. 2008-03-04 18:32:16 +01:00
Michel Dänzer
1cd2623a53 gallium: Make scons build gallivm before other auxiliary modules.
This ensures that the gallivm symbols referenced by the draw module are
resolved properly.
2008-03-04 18:30:12 +01:00
Michel Dänzer
72c9d4a660 gallium: Only use C++ compiler for linking when using LLVM.
Otherwise, the shared objects needlessly link against the C++ runtime
environment.
2008-03-04 18:28:23 +01:00
José Fonseca
9a76798112 scons: Force C++ linkage.
We have some C++ code (LLVM), which must be linked with g++ on certain
platforms. SCons tries to guess when to use g++ by looking to the source files,
but this fails, if the C++ code is not list in the command line, but inside in
the library.
2008-03-04 12:40:18 +01:00
José Fonseca
13174c195e scons: Make command line arguments effective again. 2008-03-03 18:54:45 +01:00
Keith Whitwell
689e1c5d50 win32: don't prepend all debug with gallium3d 2008-03-03 17:50:10 +01:00
Keith Whitwell
800d13df72 draw: add fetch for bgra ubyte surfaces 2008-03-03 17:50:09 +01:00
Keith Whitwell
9506ac8235 gallium: remove obsolete comment 2008-03-03 17:50:09 +01:00
Keith Whitwell
f4e91c3432 gallium: document user_buffer_create a little 2008-03-03 17:50:09 +01:00
Zack Rusin
a9c40f833e refactor code calling builtins and implement dp4 2008-03-01 15:28:00 -05:00
Zack Rusin
17f543fc45 make the first builtin work (dp3) 2008-03-01 15:28:00 -05:00
Zack Rusin
e884c7ed9a start implementing start of bultins 2008-03-01 15:28:00 -05:00
Brian Paul
07d6347e8a gallium: change st->state.sampler_texture[] to store pipe_texture pointers
This is a better fix for the previous check-in.
Fixes texadd.c conform test, and probably other bugs.
2008-02-29 16:16:16 -07:00
Brian Paul
c8bca8d8a9 gallium: fix update_textures() bug in pipe_texture binding logic
The 'st' pointer might not have changed, but st->pt might have.  The dirtyData flag
will indicate when that's happened, so check it.
2008-02-29 15:38:43 -07:00
Brian Paul
5240cebb23 gallium: fix line emit order for unfilled tris
A tri drawn with GL_LINE_LOOP and GL_POLYGON w/ fillmode=GL_LINE should produce
the same results when line stipple is enabled.  Results are correct now.
2008-02-29 13:04:53 -07:00
Brian Paul
6da943d204 gallium: point rast coord tweak 2008-02-29 13:04:53 -07:00
Brian Paul
b8ee90e05a gallium: need precalc_flat=1 for wide lines 2008-02-29 13:04:52 -07:00
Michal Krol
4d22330837 scons: List sp_screen.c. 2008-02-29 20:18:45 +01:00
Brian Paul
2a121e8e22 gallium: tweak coords for wide lines 2008-02-29 11:37:12 -07:00
Brian Paul
0b47eb4808 gallium: fix glCopyPixels(GL_DEPTH) when Z format conversion is needed 2008-02-29 11:10:20 -07:00
Brian Paul
a41b77f4fe gallium: added pipe_get/put_tile_z() functions 2008-02-29 11:10:20 -07:00
Brian
78220aea86 gallium: remove the ugly pipe->draw stage lookup code in aaline/point/pstipple stages
Added a void *draw ptr to pipe_context.  Probably look for a better solution someday.
2008-02-29 10:08:16 -07:00
Brian
ebe3b34ad2 cell: convert all points/lines to tris for the time being
Allows more programs to look correct.  We'll want native points/lines someday.
2008-02-28 18:02:05 -07:00
Brian
6144c2bd65 cell: remove obsolete texture field 2008-02-28 17:57:54 -07:00
Brian
370eca12ad Added calibrate_rast.c program
Measures rasterization of points/lines/tris and suggests fixes/biases when
something doesn't meet spec.
2008-02-28 17:55:26 -07:00
Brian Paul
b233b1e2dc gallium: new wide point/line stages (missed in prev commit) 2008-02-28 17:54:42 -07:00