aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp')
-rw-r--r--emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp b/emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp
index 656c782..b008e91 100644
--- a/emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp
+++ b/emulator/opengl/host/libs/Translator/GLES_V2/ProgramData.cpp
@@ -20,7 +20,9 @@
ProgramData::ProgramData() : ObjectData(PROGRAM_DATA),
AttachedVertexShader(0),
AttachedFragmentShader(0),
- LinkStatus(GL_FALSE) {
+ LinkStatus(GL_FALSE),
+ IsInUse(false),
+ DeleteStatus(false) {
infoLog = new GLchar[1];
infoLog[0] = '\0';
}