diff options
author | Vinson Lee <vlee@freedesktop.org> | 2012-12-17 23:15:55 -0800 |
---|---|---|
committer | Vinson Lee <vlee@freedesktop.org> | 2012-12-19 22:16:40 -0800 |
commit | d060f1bb01b1a72569367f57ba60acb6c4514056 (patch) | |
tree | dbc240f5527bc9aa432e30c6cd5af8e0c0514675 /tests/glean/tvertprog1.h | |
parent | 6b0395b47897ea0a7ca1d7ffe41f12e7e8f93baa (diff) |
glean/vertprog1: Initialize VertexProgramTest member variables.
Fixes uninitialized scalar field defect reported by Coverity.
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'tests/glean/tvertprog1.h')
-rw-r--r-- | tests/glean/tvertprog1.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/glean/tvertprog1.h b/tests/glean/tvertprog1.h index 429692f19..1c8040651 100644 --- a/tests/glean/tvertprog1.h +++ b/tests/glean/tvertprog1.h @@ -59,7 +59,9 @@ class VertexProgramTest: public MultiTest public: VertexProgramTest(const char* testName, const char* filter, const char *extensions, const char* description): - MultiTest(testName, filter, extensions, description) + MultiTest(testName, filter, extensions, description), + tolerance(), + looseTolerance() { } |