diff options
| author | 2009-09-14 18:10:30 -0700 | |
|---|---|---|
| committer | 2009-09-14 18:10:30 -0700 | |
| commit | 816d7d0268f98d891c44a8ac2e52711958abbf05 (patch) | |
| tree | b9a0abf4c6315c6984f9269b333f8f2b13ee8247 /libs/surfaceflinger/Layer.cpp | |
| parent | 7ae8a14b7d18800e55befce263a6be9c7fc4f7e5 (diff) | |
add support for RGBX_8888 surfaces in SurfaceFlinger
Diffstat (limited to 'libs/surfaceflinger/Layer.cpp')
| -rw-r--r-- | libs/surfaceflinger/Layer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/surfaceflinger/Layer.cpp b/libs/surfaceflinger/Layer.cpp index 62759103de..1e7f1e67c2 100644 --- a/libs/surfaceflinger/Layer.cpp +++ b/libs/surfaceflinger/Layer.cpp @@ -176,6 +176,9 @@ void Layer::reloadTexture(const Region& dirty) // this failed, for instance, because we don't support // NPOT. // FIXME: do something! + LOGD("layer=%p, glEGLImageTargetTexture2DOES(%d) " + "failed err=0x%04x", + this, mTextures[index].image, error); mFlags &= ~DisplayHardware::DIRECT_TEXTURE; } else { // Everything went okay! |