blob: 86247de62bb0ed55f125e49cada69e0ff8646fe3 [file] [log] [blame]
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001/*
2 * Copyright (C) 2011 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_GUI_IDISPLAY_EVENT_CONNECTION_H
18#define ANDROID_GUI_IDISPLAY_EVENT_CONNECTION_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
23#include <utils/Errors.h>
24#include <utils/RefBase.h>
25
26#include <binder/IInterface.h>
27
28namespace android {
29// ----------------------------------------------------------------------------
30
31class BitTube;
32
33class IDisplayEventConnection : public IInterface
34{
35public:
Mathias Agopian478ae5e2011-12-06 17:22:19 -080036
Mathias Agopiand0566bc2011-11-17 17:49:17 -080037 DECLARE_META_INTERFACE(DisplayEventConnection);
38
Mathias Agopian478ae5e2011-12-06 17:22:19 -080039 /*
40 * getDataChannel() returns a BitTube where to receive the events from
41 */
Mathias Agopiand0566bc2011-11-17 17:49:17 -080042 virtual sp<BitTube> getDataChannel() const = 0;
Mathias Agopian478ae5e2011-12-06 17:22:19 -080043
44 /*
45 * setVsyncRate() sets the vsync event delivery rate. A value of
46 * 1 returns every vsync events. A value of 2 returns every other events,
47 * etc... a value of 0 returns no event unless requestNextVsync() has
48 * been called.
49 */
50 virtual void setVsyncRate(uint32_t count) = 0;
51
52 /*
53 * requestNextVsync() schedules the next vsync event. It has no effect
54 * if the vsync rate is > 0.
55 */
56 virtual void requestNextVsync() = 0; // asynchronous
Mathias Agopiand0566bc2011-11-17 17:49:17 -080057};
58
59// ----------------------------------------------------------------------------
60
61class BnDisplayEventConnection : public BnInterface<IDisplayEventConnection>
62{
63public:
64 virtual status_t onTransact( uint32_t code,
65 const Parcel& data,
66 Parcel* reply,
67 uint32_t flags = 0);
68};
69
70// ----------------------------------------------------------------------------
71}; // namespace android
72
73#endif // ANDROID_GUI_IDISPLAY_EVENT_CONNECTION_H