search for: nv20_vbo

Displaying 4 results from an estimated 4 matches for "nv20_vbo".

2008 Nov 11
2
Memory corruption on Gallium window resize, diagnosed?
...;) at p_debug.c:335 #1 0xf76fe723 in nv20_state_emit_framebuffer (nv20=0x805ef68) at nv20_state_emit.c:139 #2 0xf76fef2e in nv20_emit_hw_state (nv20=0x805ef68) at nv20_state_emit.c:255 #3 0xf76ff70b in nv20_draw_elements (pipe=0x805ef68, indexBuffer=0x0, indexSize=0, prim=4, start=0, count=3) at nv20_vbo.c:20 #4 0xf76ff922 in nv20_draw_arrays (pipe=0x805ef68, prim=4, start=0, count=3) at nv20_vbo.c:73 #5 0xf7743ac8 in st_draw_vbo (ctx=0x8074d18, arrays=0x80ade38, prims=0x80ac994, nr_prims=1, ib=0x0, min_index=0, max_index=2) at state_tracker/st_draw.c:634 #6 0xf782c140 in vbo_exec_vtx_flush...
2010 Feb 02
2
[RFC] Merge of a reincarnation of the nouveau classic mesa driver.
...------------ src/gallium/drivers/nv20/nv20_state.h | 140 ---- src/gallium/drivers/nv20/nv20_state_emit.c | 426 ---------- src/gallium/drivers/nv20/nv20_surface.c | 63 -- src/gallium/drivers/nv20/nv20_transfer.c | 178 ----- src/gallium/drivers/nv20/nv20_vbo.c | 79 -- src/gallium/drivers/nv20/nv20_vertprog.c | 841 -------------------- src/gallium/drivers/nv30/nv30_miptree.c | 2 +- src/gallium/drivers/nv30/nv30_screen.h | 2 +- src/gallium/drivers/nv40/nv40_miptree.c | 2 +- src/g...
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code
...c/gallium/drivers/nv20/Makefile +++ b/src/gallium/drivers/nv20/Makefile @@ -8,13 +8,11 @@ C_SOURCES = \ nv20_context.c \ nv20_fragprog.c \ nv20_fragtex.c \ - nv20_miptree.c \ nv20_prim_vbuf.c \ nv20_screen.c \ nv20_state.c \ nv20_state_emit.c \ nv20_surface.c \ - nv20_transfer.c \ nv20_vbo.c # nv20_vertprog.c diff --git a/src/gallium/drivers/nv20/nv20_context.h b/src/gallium/drivers/nv20/nv20_context.h index c7dfada..54c8b29 100644 --- a/src/gallium/drivers/nv20/nv20_context.h +++ b/src/gallium/drivers/nv20/nv20_context.h @@ -53,8 +53,8 @@ struct nv20_context { unsigned vp_sampl...
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code (v2)
...c/gallium/drivers/nv20/Makefile +++ b/src/gallium/drivers/nv20/Makefile @@ -8,13 +8,11 @@ C_SOURCES = \ nv20_context.c \ nv20_fragprog.c \ nv20_fragtex.c \ - nv20_miptree.c \ nv20_prim_vbuf.c \ nv20_screen.c \ nv20_state.c \ nv20_state_emit.c \ nv20_surface.c \ - nv20_transfer.c \ nv20_vbo.c # nv20_vertprog.c diff --git a/src/gallium/drivers/nv20/nv20_context.h b/src/gallium/drivers/nv20/nv20_context.h index c7dfada..5cf33a3 100644 --- a/src/gallium/drivers/nv20/nv20_context.h +++ b/src/gallium/drivers/nv20/nv20_context.h @@ -47,14 +47,14 @@ struct nv20_context { uint32_t dirty;...