Skip to content

Commit 2b9b7be

Browse files
committed
ofVboMesh updateSet to false in header
1 parent 9a98c85 commit 2b9b7be

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

libs/openFrameworks/gl/ofVboMesh.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ ofVboMesh::ofVboMesh(const ofMesh & mom)
2424
vboNumColors = 0;
2525
vboNumTexCoords = 0;
2626
vboNumNormals = 0;
27-
updateSet = false;
2827
}
2928

3029
void ofVboMesh::operator=(const ofMesh & mom)

libs/openFrameworks/gl/ofVboMesh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ class ofVboMesh: public ofMesh{
5151
std::size_t vboNumNormals;
5252
std::size_t vboNumTexCoords;
5353
std::size_t vboNumColors;
54-
bool updateSet;
54+
bool updateSet = false;
5555
};

0 commit comments

Comments
 (0)