From: Mathias Agopian Date: Fri, 29 Mar 2013 00:52:36 +0000 (-0700) Subject: fix uninitialized attribute in SurfaceFlinger X-Git-Tag: android-x86-4.4-r1~115^2~5^2~48 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8171aece3d89a2107eda02c0e9daf79518b40174;p=android-x86%2Fframeworks-native.git fix uninitialized attribute in SurfaceFlinger Change-Id: I8277f67e297a8b6a99195387060d03154a2cd929 --- diff --git a/services/surfaceflinger/GLExtensions.cpp b/services/surfaceflinger/GLExtensions.cpp index 493122d878..0cbf4b10c2 100644 --- a/services/surfaceflinger/GLExtensions.cpp +++ b/services/surfaceflinger/GLExtensions.cpp @@ -28,7 +28,8 @@ ANDROID_SINGLETON_STATIC_INSTANCE( GLExtensions ) GLExtensions::GLExtensions() : mHaveTextureExternal(false), mHaveNpot(false), - mHaveDirectTexture(false) + mHaveDirectTexture(false), + mHaveFramebufferObject(false) { }