Brian [Fri, 11 Jan 2008 04:59:15 +0000 (21:59 -0700)]
Cell: wait_on_mask_all()
Brian [Fri, 11 Jan 2008 04:53:38 +0000 (21:53 -0700)]
Cell: remove unneeded #includes
Brian [Fri, 11 Jan 2008 04:50:55 +0000 (21:50 -0700)]
Cell: compute bounding box in cell_vbuf_draw()
Brian [Fri, 11 Jan 2008 04:50:31 +0000 (21:50 -0700)]
Cell: remove unused color field
Brian [Fri, 11 Jan 2008 04:37:55 +0000 (21:37 -0700)]
Cell: remove unused code
Brian [Fri, 11 Jan 2008 04:35:13 +0000 (21:35 -0700)]
Cell: make vertex_header and prim_header types private to tri.c
Brian [Fri, 11 Jan 2008 04:22:03 +0000 (21:22 -0700)]
Cell: avoid copying vertex data
Brian [Fri, 11 Jan 2008 00:30:51 +0000 (17:30 -0700)]
Cell: move tile-related code into new tile.[ch] files.
Brian [Fri, 11 Jan 2008 00:14:06 +0000 (17:14 -0700)]
Cell: use new ASSERT macro instead of standard assert
The later doesn't seem to work properly in SPU code.
Brian [Fri, 11 Jan 2008 00:03:21 +0000 (17:03 -0700)]
Cell: enable vbuf path by default
Brian [Fri, 11 Jan 2008 00:01:52 +0000 (17:01 -0700)]
Cell: checkpoint: draw_vbuf code in place and works, but not enabled by default yet.
Brian [Fri, 11 Jan 2008 00:01:11 +0000 (17:01 -0700)]
Additional parameters to vbuf_render->draw()
Pass complete information about vertex/index buffer location, size, etc.
Brian [Thu, 10 Jan 2008 22:14:58 +0000 (15:14 -0700)]
Cell: initial implementation of vbuf code.
The draw module's vbuf stage builds buffers of post-transformed vertices
and issues draw-elements calls to render them. We'll pass the vertex and
index buffers to the SPUs...
Brian [Thu, 10 Jan 2008 22:13:14 +0000 (15:13 -0700)]
Cell: call draw_compute_vertex_size()
Brian [Thu, 10 Jan 2008 16:22:22 +0000 (09:22 -0700)]
Cell: s/free/align_free/
Brian [Thu, 10 Jan 2008 16:13:10 +0000 (09:13 -0700)]
Cell: clean-up cell_spu_exit() code
Brian [Thu, 10 Jan 2008 15:32:27 +0000 (08:32 -0700)]
bump CELL_MAX_VERTS to 240
Brian [Thu, 10 Jan 2008 17:38:28 +0000 (10:38 -0700)]
comment about vertex data in emit_vertex()
Brian [Thu, 10 Jan 2008 17:22:01 +0000 (10:22 -0700)]
clean-up comments, code
Michel Dänzer [Thu, 10 Jan 2008 09:03:47 +0000 (10:03 +0100)]
softpipe: Simplify texture memory layout.
Michel Dänzer [Thu, 10 Jan 2008 09:03:17 +0000 (10:03 +0100)]
Add glapi/ path for inclusion of glapioffsets.h.
Not sure why this is only needed now...
Brian [Thu, 10 Jan 2008 00:49:43 +0000 (17:49 -0700)]
Cell: initial implementation of tile status optimizations
Tiles are marked as CLEAR, DEFINED or DIRTY to avoid making unnecessary
get_tile() and put_tile() calls.
Brian [Wed, 9 Jan 2008 23:12:25 +0000 (16:12 -0700)]
Cell: start using DMA tags in a more sensible way, move waits() later when possible.
Brian [Wed, 9 Jan 2008 21:44:19 +0000 (14:44 -0700)]
move cliprect bounds, do trivial rejection triangle clipping
Brian [Wed, 9 Jan 2008 21:14:24 +0000 (14:14 -0700)]
Cell: remove some debug printfs, predicate others with Debug boolean
Brian [Wed, 9 Jan 2008 21:10:59 +0000 (14:10 -0700)]
Cell: implemement basic Z testing
Also, improve some surface clearing code
Jerome Glisse [Thu, 10 Jan 2008 00:11:53 +0000 (01:11 +0100)]
softpipe: map only once in softpipe_map_surfaces
softpipe_map_surfaces get call several time but softpipe_unmap_surfaces
get call only once. So to make sure stuff are properly unmap when
softpipe_unmap_surfaces get call we map surfaces only one time in
softpipe_map_surfaces.
Michel Dänzer [Fri, 4 Jan 2008 16:06:55 +0000 (17:06 +0100)]
gallium: Make texture target an enum for better debuggability.
Also make enum pipe_format used in a couple more places.
Zack Rusin [Fri, 4 Jan 2008 15:01:32 +0000 (10:01 -0500)]
llvm: if llvm is enabled don't even try to use sse for vs
Zack Rusin [Fri, 4 Jan 2008 14:27:42 +0000 (09:27 -0500)]
llvm: we need custom rules so had to redo the build a little bit
also don't use sse when llvm is enabled
Zack Rusin [Fri, 4 Jan 2008 13:32:20 +0000 (08:32 -0500)]
llvm: update llvm sources the latest svn
Keith Whitwell [Thu, 3 Jan 2008 19:46:59 +0000 (19:46 +0000)]
965: fix various refcount issues
Keith Whitwell [Thu, 3 Jan 2008 19:46:16 +0000 (19:46 +0000)]
965: use correct offset for constants vs immediates
Keith Whitwell [Thu, 3 Jan 2008 17:21:22 +0000 (17:21 +0000)]
965: always perform SF parameter setup for position
Match behaviour of DRI driver. Fix fragment shader to find the other
parameters one slot further on. Will need more work to cope with FP's
that actually reference position.
Keith Whitwell [Thu, 3 Jan 2008 16:44:56 +0000 (16:44 +0000)]
965: scan fs inputs to work out interpolation in setup program
Brian [Thu, 3 Jan 2008 22:09:30 +0000 (15:09 -0700)]
clean-ups, silence warnings
Brian [Thu, 3 Jan 2008 22:05:51 +0000 (15:05 -0700)]
rename vars, clean-up formatting
Brian [Thu, 3 Jan 2008 22:03:52 +0000 (15:03 -0700)]
replace void * with struct draw_vertex_shader opaque type
Brian [Thu, 3 Jan 2008 16:57:12 +0000 (09:57 -0700)]
Cell: added -Wmissing-prototypes to SPU_CFLAGS
Brian [Thu, 3 Jan 2008 16:56:48 +0000 (09:56 -0700)]
Cell: initial work for getting/putting Z tiles
Brian [Thu, 3 Jan 2008 16:40:32 +0000 (09:40 -0700)]
disable bbox code until glitches are fixed
Brian [Thu, 3 Jan 2008 16:40:02 +0000 (09:40 -0700)]
Cell: improve surface state code to replace some temporary code.
Brian [Thu, 3 Jan 2008 15:58:51 +0000 (08:58 -0700)]
asst changes in bbox code, dma tags, etc
Brian [Thu, 3 Jan 2008 15:58:01 +0000 (08:58 -0700)]
insert a temporary flush to fix missing triangles artifact
Brian [Thu, 3 Jan 2008 14:49:59 +0000 (07:49 -0700)]
pass surface format in cell_command_framebuffer struct
Brian [Thu, 3 Jan 2008 14:49:13 +0000 (07:49 -0700)]
better debug code
Brian [Thu, 3 Jan 2008 02:31:36 +0000 (19:31 -0700)]
make use of prim bounds box info
Brian [Thu, 3 Jan 2008 02:05:34 +0000 (19:05 -0700)]
only fetch as much vertex data as needed
Brian [Thu, 3 Jan 2008 01:58:44 +0000 (18:58 -0700)]
remove previous triangle test code
Brian [Thu, 3 Jan 2008 01:53:33 +0000 (18:53 -0700)]
Cell: basic triangle rendering works.
The cell "render_stage" (last in the "draw" pipeline) emits vertices into
a buffer which is pulled by the SPUs in response to a "RENDER" command.
This is pretty much temporary/scaffold code for now.
Brian [Tue, 1 Jan 2008 22:21:14 +0000 (15:21 -0700)]
Plug in more infrastructure for actual rendering.
Track vertex/fragment shader state.
Plug in pipe->draw_arrays(), pipe->draw_elements().
Plug render stage (a stub) into end of 'draw' pipeline.
Specify a hard-coded vertex format for now.
Brian [Tue, 1 Jan 2008 21:01:14 +0000 (14:01 -0700)]
hack/fix pack_color() for correct ps3 format
Brian [Tue, 1 Jan 2008 22:17:30 +0000 (15:17 -0700)]
Clean-up, re-org some vertex/fragment shader state code.
Brian [Tue, 1 Jan 2008 22:09:16 +0000 (15:09 -0700)]
move SP_NEW_ #defines into sp_state.h
Brian [Fri, 28 Dec 2007 21:52:12 +0000 (14:52 -0700)]
fix vbo display list memleak upon context destruction
Brian [Fri, 28 Dec 2007 21:25:09 +0000 (14:25 -0700)]
unref buffer after drawing, fixes rastpos mem leak
Brian [Fri, 28 Dec 2007 21:18:18 +0000 (14:18 -0700)]
fix single-sided stencil test bug
Brian [Fri, 28 Dec 2007 02:18:12 +0000 (19:18 -0700)]
fix leak, fix refcount error
Brian [Fri, 28 Dec 2007 02:17:41 +0000 (19:17 -0700)]
fix a mem leak, document another existing leak
Brian [Wed, 26 Dec 2007 14:16:41 +0000 (07:16 -0700)]
unref const buffers during context destroy
Brian [Wed, 26 Dec 2007 14:16:12 +0000 (07:16 -0700)]
unref const buffers during context destroy
Brian [Wed, 26 Dec 2007 13:57:24 +0000 (06:57 -0700)]
free program caches
Brian [Wed, 26 Dec 2007 13:56:58 +0000 (06:56 -0700)]
fix mem leaks
Brian [Wed, 26 Dec 2007 13:56:42 +0000 (06:56 -0700)]
fix mem leak (free key)
Brian [Tue, 25 Dec 2007 00:40:02 +0000 (17:40 -0700)]
free surface caches in softpipe_destroy()
Brian [Tue, 25 Dec 2007 00:39:21 +0000 (17:39 -0700)]
fix a memleak
Brian [Tue, 25 Dec 2007 00:39:01 +0000 (17:39 -0700)]
free tgsi machine state
Brian [Tue, 25 Dec 2007 00:38:35 +0000 (17:38 -0700)]
free tgsi machine state
Brian [Tue, 25 Dec 2007 00:37:59 +0000 (17:37 -0700)]
added tgsi_exec_machine_free_data()
Brian [Tue, 25 Dec 2007 00:37:30 +0000 (17:37 -0700)]
free Default1D/2DArray objects
Zack Rusin [Mon, 24 Dec 2007 12:57:34 +0000 (07:57 -0500)]
i965: a little better way of handling immediates
Zack Rusin [Thu, 20 Dec 2007 17:54:23 +0000 (12:54 -0500)]
i965: very crude and hacky way of handling immediates
Keith Whitwell [Thu, 20 Dec 2007 13:47:46 +0000 (13:47 +0000)]
gallium: make state tracker explictly ask for rendercache flushes
Keith Whitwell [Thu, 20 Dec 2007 13:47:11 +0000 (13:47 +0000)]
965: respect pipe flush flags
Now we emit way too many flushes instead of none at all.
Keith Whitwell [Thu, 20 Dec 2007 13:19:56 +0000 (13:19 +0000)]
gallium: translate ARB fp/vp immediates consistently to tgsi immediates
Zack Rusin [Thu, 20 Dec 2007 12:05:52 +0000 (07:05 -0500)]
965: fix the constant buffers
Brian [Wed, 19 Dec 2007 21:06:22 +0000 (14:06 -0700)]
Add some prototype code for converting RET to END for main(). Disabled for now.
Brian [Wed, 19 Dec 2007 20:53:28 +0000 (13:53 -0700)]
temporarily defeat an assertion
Brian [Wed, 19 Dec 2007 20:45:00 +0000 (13:45 -0700)]
Fix problem with initial viewport/scissor size.
If an app never called glViewport, the viewport size was always 0 by 0 pixels.
Now pass initial size to st_create_framebuffer() and initialize the viewport
and scissor bounds in st_make_current().
This could also be fixed by ensuring the gl_framebuffers passed to
_mesa_make_current() were initialized to the right size. But that involves
allocating the renderbuffers/pipe_surfaces earlier and that runs into some
other issues ATM.
Also remove obsolete createRenderbuffers param to st_create_framebuffer().
Brian [Wed, 19 Dec 2007 18:50:50 +0000 (11:50 -0700)]
convert Mesa OPCODE_END to TGSI_OPCODE_END, not TGSI_OPCOD_RET
Brian [Wed, 19 Dec 2007 15:51:17 +0000 (08:51 -0700)]
remove obsolete TXP, add some sanity checks
Brian [Wed, 19 Dec 2007 15:50:52 +0000 (08:50 -0700)]
special-case PSIZE too
Brian [Wed, 19 Dec 2007 15:50:35 +0000 (08:50 -0700)]
move st_make_current() before buffer size check so renderbuffer alloc storage works
Brian [Wed, 19 Dec 2007 15:49:59 +0000 (08:49 -0700)]
new assertions
Keith Whitwell [Wed, 19 Dec 2007 19:05:19 +0000 (19:05 +0000)]
965: dump curbe contents to stderr
Keith Whitwell [Wed, 19 Dec 2007 19:04:35 +0000 (19:04 +0000)]
965: handle BRW_CONSTANT_BUFFER data type
Zack Rusin [Wed, 19 Dec 2007 18:22:27 +0000 (13:22 -0500)]
consts
Keith Whitwell [Wed, 19 Dec 2007 15:48:53 +0000 (15:48 +0000)]
965: count grf allocation correctly for wm prog, first aub triangle
Keith Whitwell [Wed, 19 Dec 2007 15:16:25 +0000 (15:16 +0000)]
965: hardwire correct behaviour for vp-tri setup (for now...)
Keith Whitwell [Wed, 19 Dec 2007 15:13:20 +0000 (15:13 +0000)]
vp-tri: match vertex/color data of other tests
Keith Whitwell [Wed, 19 Dec 2007 14:20:23 +0000 (14:20 +0000)]
965: align buffer allocations to 4k
Keith Whitwell [Wed, 19 Dec 2007 13:13:42 +0000 (13:13 +0000)]
use a depth buffer temporarily
Keith Whitwell [Wed, 19 Dec 2007 13:12:34 +0000 (13:12 +0000)]
965: make sure stipple state gets uploaded
Keith Whitwell [Wed, 19 Dec 2007 13:11:56 +0000 (13:11 +0000)]
965: allocate buffer space to hold batch commands
Zack Rusin [Wed, 19 Dec 2007 12:49:42 +0000 (07:49 -0500)]
actually set the max_index. useful in the driver
Keith Whitwell [Wed, 19 Dec 2007 12:23:27 +0000 (12:23 +0000)]
965: fill unused surface pointers with zero
Zack Rusin [Wed, 19 Dec 2007 12:08:13 +0000 (07:08 -0500)]
i965: emit fb write on RET for now (until we get END back)
Keith Whitwell [Wed, 19 Dec 2007 11:49:56 +0000 (11:49 +0000)]
965: pitch is in bytes not pixels
Keith Whitwell [Wed, 19 Dec 2007 11:36:03 +0000 (11:36 +0000)]
965: fix off-by-one in scissor rect
Keith Whitwell [Wed, 19 Dec 2007 11:35:21 +0000 (11:35 +0000)]
965: fix off-by-one in surface dimensions