diff options
author | 2010-05-24 18:30:35 -0700 | |
---|---|---|
committer | 2010-05-24 18:30:35 -0700 | |
commit | 97e8ff0b4bcfa9cc9205b2881a110a1c498c5deb (patch) | |
tree | 9d11e5f9ee406798070a5cb335390147ae1dffa5 /libs/surfaceflinger/LayerBase.cpp | |
parent | 2d156c269e8f205f4148656f971e65db70baabed (diff) | |
parent | a138f89c5e78b7e8994823e97d6e860869762837 (diff) |
Merge "added the notion of fixed-size buffers" into kraken
Diffstat (limited to 'libs/surfaceflinger/LayerBase.cpp')
-rw-r--r-- | libs/surfaceflinger/LayerBase.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/surfaceflinger/LayerBase.cpp b/libs/surfaceflinger/LayerBase.cpp index 63b9520e03..51673ffc36 100644 --- a/libs/surfaceflinger/LayerBase.cpp +++ b/libs/surfaceflinger/LayerBase.cpp @@ -616,7 +616,8 @@ status_t LayerBaseClient::Surface::onTransact( return BnSurface::onTransact(code, data, reply, flags); } -sp<GraphicBuffer> LayerBaseClient::Surface::requestBuffer(int index, int usage) +sp<GraphicBuffer> LayerBaseClient::Surface::requestBuffer(int bufferIdx, + uint32_t w, uint32_t h, uint32_t format, uint32_t usage) { return NULL; } |