OSDN Git Service
(root)
/
android-x86
/
frameworks-native.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf667e3
)
fix uninitialized attribute in SurfaceFlinger
author
Mathias Agopian
<mathias@google.com>
Fri, 29 Mar 2013 00:52:36 +0000
(17:52 -0700)
committer
Mathias Agopian
<mathias@google.com>
Fri, 29 Mar 2013 00:52:36 +0000
(17:52 -0700)
Change-Id: I8277f67e297a8b6a99195387060d03154a2cd929
services/surfaceflinger/GLExtensions.cpp
patch
|
blob
|
history
diff --git
a/services/surfaceflinger/GLExtensions.cpp
b/services/surfaceflinger/GLExtensions.cpp
index
493122d
..
0cbf4b1
100644
(file)
--- 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)
{
}