aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2016-03-19 13:07:13 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-19 13:07:14 -0700
commitba73ad0f3a6d9d505cae08e4f3cc5d2d6b9b1501 (patch)
tree57034a5bf87f0b501f890047a4723dd7b9205341 /src/gpu
parent5c473bee8e9bcf9b130de00d2c55d2152f6c687f (diff)
Fix uninitialized fCurrProgramID in GrGLCreateNullInterface
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/gl/GrGLCreateNullInterface.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gpu/gl/GrGLCreateNullInterface.cpp b/src/gpu/gl/GrGLCreateNullInterface.cpp
index ccaab598b8..57c840d847 100644
--- a/src/gpu/gl/GrGLCreateNullInterface.cpp
+++ b/src/gpu/gl/GrGLCreateNullInterface.cpp
@@ -114,6 +114,7 @@ public:
, fCurrElementArrayBuffer(0)
, fCurrPixelPackBuffer(0)
, fCurrPixelUnpackBuffer(0)
+ , fCurrProgramID(0)
, fCurrShaderID(0)
, fCurrGenericID(0)
, fCurrUniformLocation(0) {