blob: 0f1bf35836efad7ae02e2aa131d4d046b5541c52 [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:
Jesse Hall399184a2014-03-03 15:42:54 -080030 struct ContentsChangedListener: public FrameAvailableListener {
31 virtual void onSidebandStreamChanged() = 0;
32 };
33
Dan Stozab9b08832014-03-13 11:55:57 -070034 SurfaceFlingerConsumer(const sp<IGraphicBufferConsumer>& consumer,
35 uint32_t tex)
36 : GLConsumer(consumer, tex, GLConsumer::TEXTURE_EXTERNAL, false)
Andy McFaddenbf974ab2012-12-04 16:51:15 -080037 {}
38
39 class BufferRejecter {
40 friend class SurfaceFlingerConsumer;
41 virtual bool reject(const sp<GraphicBuffer>& buf,
Mathias Agopiandb89edc2013-08-02 01:40:18 -070042 const IGraphicBufferConsumer::BufferItem& item) = 0;
Andy McFaddenbf974ab2012-12-04 16:51:15 -080043
44 protected:
45 virtual ~BufferRejecter() { }
46 };
47
Mathias Agopianc1c05de2013-09-17 23:45:22 -070048 virtual status_t acquireBufferLocked(BufferQueue::BufferItem *item, nsecs_t presentWhen);
49
Andy McFaddenbf974ab2012-12-04 16:51:15 -080050 // This version of updateTexImage() takes a functor that may be used to
Andy McFadden2adaf042012-12-18 09:49:45 -080051 // reject the newly acquired buffer. Unlike the GLConsumer version,
Andy McFaddenbf974ab2012-12-04 16:51:15 -080052 // this does not guarantee that the buffer has been bound to the GL
53 // texture.
54 status_t updateTexImage(BufferRejecter* rejecter);
55
Andy McFadden2adaf042012-12-18 09:49:45 -080056 // See GLConsumer::bindTextureImageLocked().
Andy McFadden97eba892012-12-11 15:21:45 -080057 status_t bindTextureImage();
Andy McFadden1585c4d2013-06-28 13:52:40 -070058
Mathias Agopianc1c05de2013-09-17 23:45:22 -070059 // must be called from SF main thread
60 bool getTransformToDisplayInverse() const;
61
Jesse Hall399184a2014-03-03 15:42:54 -080062 // Sets the contents changed listener. This should be used instead of
63 // ConsumerBase::setFrameAvailableListener().
64 void setContentsChangedListener(const wp<ContentsChangedListener>& listener);
65
66 sp<NativeHandle> getSidebandStream() const;
67
Andy McFadden1585c4d2013-06-28 13:52:40 -070068private:
69 nsecs_t computeExpectedPresent();
Mathias Agopianc1c05de2013-09-17 23:45:22 -070070
Jesse Hall399184a2014-03-03 15:42:54 -080071 virtual void onSidebandStreamChanged();
72
73 wp<ContentsChangedListener> mContentsChangedListener;
74
Mathias Agopianc1c05de2013-09-17 23:45:22 -070075 // Indicates this buffer must be transformed by the inverse transform of the screen
76 // it is displayed onto. This is applied after GLConsumer::mCurrentTransform.
77 // This must be set/read from SurfaceFlinger's main thread.
78 bool mTransformToDisplayInverse;
Andy McFaddenbf974ab2012-12-04 16:51:15 -080079};
80
81// ----------------------------------------------------------------------------
82}; // namespace android
83
84#endif // ANDROID_SURFACEFLINGERCONSUMER_H