summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/ddebug/dd_pipe.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2016-07-22 01:36:55 +0200
committerMarek Olšák <[email protected]>2016-07-26 23:06:46 +0200
commit0795a3d54f7748d27020851f2e9b4b7637597590 (patch)
tree4344b500b23ff9326afff7785c62fab358161bed /src/gallium/drivers/ddebug/dd_pipe.h
parente4079677a7819a79a4e59425688000f15ceb19d7 (diff)
ddebug: don't save pointers to call parameters
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ddebug/dd_pipe.h')
-rw-r--r--src/gallium/drivers/ddebug/dd_pipe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/ddebug/dd_pipe.h b/src/gallium/drivers/ddebug/dd_pipe.h
index e4960d559a3..5ba1b7a6d75 100644
--- a/src/gallium/drivers/ddebug/dd_pipe.h
+++ b/src/gallium/drivers/ddebug/dd_pipe.h
@@ -72,13 +72,13 @@ struct call_resource_copy_region
unsigned dstx, dsty, dstz;
struct pipe_resource *src;
unsigned src_level;
- const struct pipe_box *src_box;
+ struct pipe_box src_box;
};
struct call_clear
{
unsigned buffers;
- const union pipe_color_union *color;
+ union pipe_color_union color;
double depth;
unsigned stencil;
};