commit | 8171aece3d89a2107eda02c0e9daf79518b40174 | [log] [tgz] |
---|---|---|
author | Mathias Agopian <mathias@google.com> | Thu Mar 28 17:52:36 2013 -0700 |
committer | Mathias Agopian <mathias@google.com> | Thu Mar 28 17:52:36 2013 -0700 |
tree | 44af72867d8ea2d089f884a88efbf87e722c4895 | |
parent | bf667e31558d14d75076e45da665288d6fa2ed3c [diff] [blame] |
fix uninitialized attribute in SurfaceFlinger Change-Id: I8277f67e297a8b6a99195387060d03154a2cd929
diff --git a/services/surfaceflinger/GLExtensions.cpp b/services/surfaceflinger/GLExtensions.cpp index 493122d..0cbf4b1 100644 --- a/services/surfaceflinger/GLExtensions.cpp +++ b/services/surfaceflinger/GLExtensions.cpp
@@ -28,7 +28,8 @@ GLExtensions::GLExtensions() : mHaveTextureExternal(false), mHaveNpot(false), - mHaveDirectTexture(false) + mHaveDirectTexture(false), + mHaveFramebufferObject(false) { }