diff options
| author | 2009-04-27 18:50:06 -0700 | |
|---|---|---|
| committer | 2009-04-27 18:50:06 -0700 | |
| commit | 2b42fa7fddafdfe27732813d79ca47a409a3b9c1 (patch) | |
| tree | fd60fb886045a715ba88f0b3dcf3f367fb8ceb6e /libs/surfaceflinger/Layer.cpp | |
| parent | 4c9ff468c94ff90f768ad933c50ffd9d9586f01c (diff) | |
fix 1803886 android15 Translucent GLSurfaceView demo does not display properly
Diffstat (limited to 'libs/surfaceflinger/Layer.cpp')
| -rw-r--r-- | libs/surfaceflinger/Layer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaceflinger/Layer.cpp b/libs/surfaceflinger/Layer.cpp index f65d66984d..96395a883c 100644 --- a/libs/surfaceflinger/Layer.cpp +++ b/libs/surfaceflinger/Layer.cpp @@ -108,7 +108,7 @@ status_t Layer::setBuffers( Client* client, // we always force a 4-byte aligned bpr. uint32_t alignment = 1; - if (flags & ISurfaceComposer::eGPU) { + if ((flags & ISurfaceComposer::eGPU) && (mFlinger->getGPU() != 0)) { // FIXME: this value should come from the h/w alignment = 8; // FIXME: this is msm7201A specific, as its GPU only supports |