blob: fe66c9beea5b86719a2b487e0b14c67ed06c376b [file] [log] [blame]
Mathias Agopianfc054132009-08-18 17:35:44 -07001/*
2 * Copyright (C) 2008 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 GR_H_
18#define GR_H_
19
20#include <stdint.h>
Elliott Hughes6caa78d2014-02-24 15:50:34 -080021#include <sys/user.h>
Mathias Agopianfc054132009-08-18 17:35:44 -070022#include <limits.h>
23#include <sys/cdefs.h>
24#include <hardware/gralloc.h>
25#include <pthread.h>
26#include <errno.h>
Juan Yescascf51f702023-08-18 16:04:03 +000027#include <unistd.h>
Mathias Agopianfc054132009-08-18 17:35:44 -070028
29#include <cutils/native_handle.h>
30
31/*****************************************************************************/
32
33struct private_module_t;
34struct private_handle_t;
35
Juan Yescascf51f702023-08-18 16:04:03 +000036static const size_t kPageSize = getpagesize();
37
Mathias Agopianfc054132009-08-18 17:35:44 -070038inline size_t roundUpToPageSize(size_t x) {
Juan Yescascf51f702023-08-18 16:04:03 +000039 return (x + (kPageSize-1)) & ~(kPageSize-1);
Mathias Agopianfc054132009-08-18 17:35:44 -070040}
41
Peter Collingbournef2ed2932019-10-15 17:29:20 -070042int mapFrameBufferLocked(struct private_module_t* module, int format);
Mathias Agopianfc054132009-08-18 17:35:44 -070043int terminateBuffer(gralloc_module_t const* module, private_handle_t* hnd);
Mathias Agopianf96b2062009-12-14 18:27:09 -080044int mapBuffer(gralloc_module_t const* module, private_handle_t* hnd);
Mathias Agopianfc054132009-08-18 17:35:44 -070045
46/*****************************************************************************/
47
48class Locker {
49 pthread_mutex_t mutex;
50public:
51 class Autolock {
52 Locker& locker;
53 public:
Chih-Hung Hsieh928e6792016-06-30 14:17:31 -070054 inline explicit Autolock(Locker& locker) : locker(locker) { locker.lock(); }
Mathias Agopianfc054132009-08-18 17:35:44 -070055 inline ~Autolock() { locker.unlock(); }
56 };
57 inline Locker() { pthread_mutex_init(&mutex, 0); }
58 inline ~Locker() { pthread_mutex_destroy(&mutex); }
59 inline void lock() { pthread_mutex_lock(&mutex); }
60 inline void unlock() { pthread_mutex_unlock(&mutex); }
61};
62
63#endif /* GR_H_ */