OSDN Git Service

fix uninitialized attribute in SurfaceFlinger
authorMathias Agopian <mathias@google.com>
Fri, 29 Mar 2013 00:52:36 +0000 (17:52 -0700)
committerMathias Agopian <mathias@google.com>
Fri, 29 Mar 2013 00:52:36 +0000 (17:52 -0700)
Change-Id: I8277f67e297a8b6a99195387060d03154a2cd929

services/surfaceflinger/GLExtensions.cpp

index 493122d..0cbf4b1 100644 (file)
@@ -28,7 +28,8 @@ ANDROID_SINGLETON_STATIC_INSTANCE( GLExtensions )
 GLExtensions::GLExtensions()
     : mHaveTextureExternal(false),
       mHaveNpot(false),
-      mHaveDirectTexture(false)
+      mHaveDirectTexture(false),
+      mHaveFramebufferObject(false)
 {
 }