summaryrefslogtreecommitdiffstats
path: root/src/gallium/tests/graw/quad-sample.c
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2016-10-07 11:58:16 -0400
committerRob Clark <[email protected]>2016-10-07 15:50:46 -0400
commit495ba8884ad5047abc7e408b68165c0465a81ac0 (patch)
tree0d9328470726c425d5697553b395d06fc4deb085 /src/gallium/tests/graw/quad-sample.c
parent3ebfc44b4231cfa131e17076b10140fcd70ccd8c (diff)
gallium: add missing zero-init for resource templates
Mostly test code, plus one spot I noticed in r600. Signed-off-by: Rob Clark <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/tests/graw/quad-sample.c')
-rw-r--r--src/gallium/tests/graw/quad-sample.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/quad-sample.c b/src/gallium/tests/graw/quad-sample.c
index d1bee359261..03f51fc9554 100644
--- a/src/gallium/tests/graw/quad-sample.c
+++ b/src/gallium/tests/graw/quad-sample.c
@@ -209,6 +209,7 @@ static void init_tex( void )
tex2d[1][1][3] = 255;
#endif
+ memset(&templat, 0, sizeof(templat));
templat.target = PIPE_TEXTURE_2D;
templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
templat.width0 = SIZE;
@@ -317,6 +318,7 @@ static void init( void )
if (ctx == NULL)
exit(3);
+ memset(&templat, 0, sizeof(templat));
templat.target = PIPE_TEXTURE_2D;
templat.format = formats[i];
templat.width0 = WIDTH;