diff options
author | 2009-08-11 22:34:02 -0700 | |
---|---|---|
committer | 2009-08-11 23:32:29 -0700 | |
commit | 5221271375f361b84a6eeec3d7086f223997fbb3 (patch) | |
tree | f65cab160cf38b9ed577f1cb5bc2f9882fc8631c /libs/surfaceflinger/LayerBase.cpp | |
parent | 40ef81c7fce7cd1b028aec7b8b27b77ce6bf7b90 (diff) |
second take, hopefully this time it doesn't break one of the builds: "SurfaceFlinger will now allocate buffers based on the usage specified by the clients. This allows to allocate the right kind of buffer automatically, without having the user to specify anything."
Diffstat (limited to 'libs/surfaceflinger/LayerBase.cpp')
-rw-r--r-- | libs/surfaceflinger/LayerBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaceflinger/LayerBase.cpp b/libs/surfaceflinger/LayerBase.cpp index fbce73ddd3..419574c7de 100644 --- a/libs/surfaceflinger/LayerBase.cpp +++ b/libs/surfaceflinger/LayerBase.cpp @@ -759,7 +759,7 @@ status_t LayerBaseClient::Surface::onTransact( return BnSurface::onTransact(code, data, reply, flags); } -sp<SurfaceBuffer> LayerBaseClient::Surface::getBuffer() +sp<SurfaceBuffer> LayerBaseClient::Surface::getBuffer(int) { return NULL; } |