diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-22 00:09:43 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-22 00:09:43 -0700 |
commit | 48c289fb552a3d363b505514b6ea22467f00e318 (patch) | |
tree | 341b253d7b17335ec1d48c309d6886ca8af1b25d /src/mesa | |
parent | 405546882a010885d342b0b40392de0da289374e (diff) |
mesa: Initialize member variables in ir_to_mesa_src_reg constructor.
The default constructor did not initialize some member variables.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 8df85dc3ea..676f68e5a0 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -78,6 +78,10 @@ typedef struct ir_to_mesa_src_reg { ir_to_mesa_src_reg() { this->file = PROGRAM_UNDEFINED; + this->index = 0; + this->swizzle = 0; + this->negate = 0; + this->reladdr = NULL; } int file; /**< PROGRAM_* from Mesa */ |