search for: p_inlines

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

Did you mean: u_inlines
2008 Nov 11
2
Memory corruption on Gallium window resize, diagnosed?
...ure = 0x0, face = 0, level = 0, zslice = 88} I tried to track what writes the insane value to the format field, and always came up with malloc and free, which didn't make any sense. Then I ran it with valgrind: ==5322== Invalid read of size 4 ==5322== at 0x7B6887C: pipe_surface_reference (p_inlines.h:93) ==5322== by 0x7B6881F: copy_framebuffer_state (cso_context.c:781) ==5322== by 0x7B68962: cso_set_framebuffer (cso_context.c:791) ==5322== by 0x7AB5441: update_framebuffer_state (st_atom_framebuffer.c:147) ==5322== by 0x7AB3E41: st_validate_state (st_atom.c:188) ==5322== by 0x7A...
2009 Nov 10
1
[PATCH] Add missing include
...changed, 1 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/nv30/nv30_fragprog.c b/src/gallium/drivers/nv30/nv30_fragprog.c index cc03854..b42a7be 100644 --- a/src/gallium/drivers/nv30/nv30_fragprog.c +++ b/src/gallium/drivers/nv30/nv30_fragprog.c @@ -4,6 +4,7 @@ #include "pipe/p_inlines.h" #include "pipe/p_shader_tokens.h" +#include "tgsi/tgsi_dump.h" #include "tgsi/tgsi_parse.h" #include "tgsi/tgsi_util.h" -- 1.6.5.2
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code
...nv04/nv04_miptree.c b/src/gallium/drivers/nv04/nv04_miptree.c index e0a6948..d30b046 100644 --- a/src/gallium/drivers/nv04/nv04_miptree.c +++ b/src/gallium/drivers/nv04/nv04_miptree.c @@ -1,64 +1,133 @@ #include "pipe/p_state.h" #include "pipe/p_defines.h" #include "pipe/p_inlines.h" +#include "util/u_format.h" #include "util/u_math.h" #include "nv04_context.h" -#include "nv04_screen.h" -static void -nv04_miptree_layout(struct nv04_miptree *nv04mt) +static unsigned +nv04_miptree_layout(struct nv04_miptree *mt) { - struct pi...
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code (v2)
...nv04/nv04_miptree.c b/src/gallium/drivers/nv04/nv04_miptree.c index e0a6948..74c2250 100644 --- a/src/gallium/drivers/nv04/nv04_miptree.c +++ b/src/gallium/drivers/nv04/nv04_miptree.c @@ -1,64 +1,138 @@ #include "pipe/p_state.h" #include "pipe/p_defines.h" #include "pipe/p_inlines.h" +#include "util/u_format.h" #include "util/u_math.h" #include "nv04_context.h" -#include "nv04_screen.h" -static void -nv04_miptree_layout(struct nv04_miptree *nv04mt) +static unsigned +nv04_miptree_layout(struct nv04_miptree *mt) { - struct pi...