blob: c7fc1641db6b407a345ed22a307cf331585cfa81 [file] [log] [blame]
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_SURFACEFLINGERCONSUMER_H
18#define ANDROID_SURFACEFLINGERCONSUMER_H
19
Andy McFadden2adaf042012-12-18 09:49:45 -080020#include <gui/GLConsumer.h>
Andy McFaddenbf974ab2012-12-04 16:51:15 -080021
22namespace android {
23// ----------------------------------------------------------------------------
24
25/*
Andy McFadden2adaf042012-12-18 09:49:45 -080026 * This is a thin wrapper around GLConsumer.
Andy McFaddenbf974ab2012-12-04 16:51:15 -080027 */
Andy McFadden2adaf042012-12-18 09:49:45 -080028class SurfaceFlingerConsumer : public GLConsumer {
Andy McFaddenbf974ab2012-12-04 16:51:15 -080029public:
Mathias Agopian3f844832013-08-07 21:24:32 -070030 SurfaceFlingerConsumer(const sp<BufferQueue>& bq, uint32_t tex)
31 : GLConsumer(bq, tex, GLConsumer::TEXTURE_EXTERNAL, false)
Andy McFaddenbf974ab2012-12-04 16:51:15 -080032 {}
33
34 class BufferRejecter {
35 friend class SurfaceFlingerConsumer;
36 virtual bool reject(const sp<GraphicBuffer>& buf,
Mathias Agopiandb89edc2013-08-02 01:40:18 -070037 const IGraphicBufferConsumer::BufferItem& item) = 0;
Andy McFaddenbf974ab2012-12-04 16:51:15 -080038
39 protected:
40 virtual ~BufferRejecter() { }
41 };
42
43 // This version of updateTexImage() takes a functor that may be used to
Andy McFadden2adaf042012-12-18 09:49:45 -080044 // reject the newly acquired buffer. Unlike the GLConsumer version,
Andy McFaddenbf974ab2012-12-04 16:51:15 -080045 // this does not guarantee that the buffer has been bound to the GL
46 // texture.
47 status_t updateTexImage(BufferRejecter* rejecter);
48
Andy McFadden2adaf042012-12-18 09:49:45 -080049 // See GLConsumer::bindTextureImageLocked().
Andy McFadden97eba892012-12-11 15:21:45 -080050 status_t bindTextureImage();
Andy McFadden1585c4d2013-06-28 13:52:40 -070051
52private:
53 nsecs_t computeExpectedPresent();
Andy McFaddenbf974ab2012-12-04 16:51:15 -080054};
55
56// ----------------------------------------------------------------------------
57}; // namespace android
58
59#endif // ANDROID_SURFACEFLINGERCONSUMER_H