Skip to content

Commit 10e9f39

Browse files
stephenhinesAndroid (Google) Code Review
authored andcommitted
Merge "Initialize all class members."
2 parents 8f01c1f + 5b79842 commit 10e9f39

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/rs/driver/rsdShaderCache.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ class RsdShaderCache {
9898
struct ProgramEntry {
9999
ProgramEntry(uint32_t numVtxAttr, uint32_t numVtxUnis,
100100
uint32_t numFragUnis) : vtx(0), frag(0), program(0), vtxAttrCount(0),
101-
vtxAttrs(0), vtxUniforms(0), fragUniforms(0) {
101+
vtxAttrs(0), vtxUniforms(0), fragUniforms(0),
102+
fragUniformIsSTO(0) {
102103
vtxAttrCount = numVtxAttr;
103104
if (numVtxAttr) {
104105
vtxAttrs = new AttrData[numVtxAttr];

0 commit comments

Comments
 (0)