Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b003fab authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

am 8171aece: fix uninitialized attribute in SurfaceFlinger

* commit '8171aece':
  fix uninitialized attribute in SurfaceFlinger
parents a6e3962f 8171aece
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -28,7 +28,8 @@ ANDROID_SINGLETON_STATIC_INSTANCE( GLExtensions )
GLExtensions::GLExtensions()
    : mHaveTextureExternal(false),
      mHaveNpot(false),
      mHaveDirectTexture(false)
      mHaveDirectTexture(false),
      mHaveFramebufferObject(false)
{
}