| Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 1 | /* | 
 | 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_SURFACE_FLINGER_DISPLAY_EVENT_CONNECTION_H | 
 | 18 | #define ANDROID_SURFACE_FLINGER_DISPLAY_EVENT_CONNECTION_H | 
 | 19 |  | 
 | 20 | #include <stdint.h> | 
 | 21 | #include <sys/types.h> | 
 | 22 |  | 
 | 23 | #include <gui/IDisplayEventConnection.h> | 
 | 24 |  | 
 | 25 | #include <utils/Errors.h> | 
 | 26 | #include <gui/DisplayEventReceiver.h> | 
 | 27 |  | 
 | 28 | // --------------------------------------------------------------------------- | 
 | 29 |  | 
 | 30 | namespace android { | 
 | 31 |  | 
 | 32 | // --------------------------------------------------------------------------- | 
 | 33 |  | 
 | 34 | class BitTube; | 
| Mathias Agopian | 478ae5e | 2011-12-06 17:22:19 -0800 | [diff] [blame] | 35 | class EventThread; | 
| Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 36 |  | 
 | 37 | // --------------------------------------------------------------------------- | 
 | 38 |  | 
 | 39 | class DisplayEventConnection : public BnDisplayEventConnection { | 
 | 40 | public: | 
| Mathias Agopian | 478ae5e | 2011-12-06 17:22:19 -0800 | [diff] [blame] | 41 |     DisplayEventConnection(const sp<EventThread>& flinger); | 
| Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 42 |  | 
 | 43 |     status_t postEvent(const DisplayEventReceiver::Event& event); | 
 | 44 |  | 
 | 45 | private: | 
 | 46 |     virtual ~DisplayEventConnection(); | 
 | 47 |     virtual void onFirstRef(); | 
 | 48 |     virtual sp<BitTube> getDataChannel() const; | 
| Mathias Agopian | 478ae5e | 2011-12-06 17:22:19 -0800 | [diff] [blame] | 49 |     virtual void setVsyncRate(uint32_t count); | 
 | 50 |     virtual void requestNextVsync();    // asynchronous | 
| Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 51 |  | 
| Mathias Agopian | 478ae5e | 2011-12-06 17:22:19 -0800 | [diff] [blame] | 52 |     sp<EventThread> const mEventThread; | 
| Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 53 |     sp<BitTube> const mChannel; | 
 | 54 | }; | 
 | 55 |  | 
 | 56 | // --------------------------------------------------------------------------- | 
 | 57 |  | 
 | 58 | }; // namespace android | 
 | 59 |  | 
 | 60 | // --------------------------------------------------------------------------- | 
 | 61 |  | 
 | 62 | #endif /* ANDROID_SURFACE_FLINGER_DISPLAY_EVENT_CONNECTION_H */ |