blob: becd5d365693d067dc34e815604fd990ba344147 [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
Mathias Agopian3f844832013-08-07 21:24:32 -070034 SurfaceFlingerConsumer(const sp<BufferQueue>& bq, uint32_t tex)
35 : GLConsumer(bq, tex, GLConsumer::TEXTURE_EXTERNAL, false)
Andy McFaddenbf974ab2012-12-04 16:51:15 -080036 {}
37
38 class BufferRejecter {
39 friend class SurfaceFlingerConsumer;
40 virtual bool reject(const sp<GraphicBuffer>& buf,
Mathias Agopiandb89edc2013-08-02 01:40:18 -070041 const IGraphicBufferConsumer::BufferItem& item) = 0;
Andy McFaddenbf974ab2012-12-04 16:51:15 -080042
43 protected:
44 virtual ~BufferRejecter() { }
45 };
46
Mathias Agopianc1c05de2013-09-17 23:45:22 -070047 virtual status_t acquireBufferLocked(BufferQueue::BufferItem *item, nsecs_t presentWhen);
48
Andy McFaddenbf974ab2012-12-04 16:51:15 -080049 // This version of updateTexImage() takes a functor that may be used to
Andy McFadden2adaf042012-12-18 09:49:45 -080050 // reject the newly acquired buffer. Unlike the GLConsumer version,
Andy McFaddenbf974ab2012-12-04 16:51:15 -080051 // this does not guarantee that the buffer has been bound to the GL
52 // texture.
53 status_t updateTexImage(BufferRejecter* rejecter);
54
Andy McFadden2adaf042012-12-18 09:49:45 -080055 // See GLConsumer::bindTextureImageLocked().
Andy McFadden97eba892012-12-11 15:21:45 -080056 status_t bindTextureImage();
Andy McFadden1585c4d2013-06-28 13:52:40 -070057
Mathias Agopianc1c05de2013-09-17 23:45:22 -070058 // must be called from SF main thread
59 bool getTransformToDisplayInverse() const;
60
Jesse Hall399184a2014-03-03 15:42:54 -080061 // Sets the contents changed listener. This should be used instead of
62 // ConsumerBase::setFrameAvailableListener().
63 void setContentsChangedListener(const wp<ContentsChangedListener>& listener);
64
65 sp<NativeHandle> getSidebandStream() const;
66
Andy McFadden1585c4d2013-06-28 13:52:40 -070067private:
68 nsecs_t computeExpectedPresent();
Mathias Agopianc1c05de2013-09-17 23:45:22 -070069
Jesse Hall399184a2014-03-03 15:42:54 -080070 virtual void onSidebandStreamChanged();
71
72 wp<ContentsChangedListener> mContentsChangedListener;
73
Mathias Agopianc1c05de2013-09-17 23:45:22 -070074 // Indicates this buffer must be transformed by the inverse transform of the screen
75 // it is displayed onto. This is applied after GLConsumer::mCurrentTransform.
76 // This must be set/read from SurfaceFlinger's main thread.
77 bool mTransformToDisplayInverse;
Andy McFaddenbf974ab2012-12-04 16:51:15 -080078};
79
80// ----------------------------------------------------------------------------
81}; // namespace android
82
83#endif // ANDROID_SURFACEFLINGERCONSUMER_H