The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright 2007 The Android Open Source Project |
| 4 | ** |
| 5 | ** Licensed under the Apache License Version 2.0(the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 18 | #define LOG_TAG "FramebufferNativeWindow" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | |
| 20 | #include <stdlib.h> |
| 21 | #include <stdio.h> |
| 22 | #include <string.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 23 | #include <errno.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 24 | |
| 25 | #include <cutils/log.h> |
| 26 | #include <cutils/atomic.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 27 | #include <utils/threads.h> |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 28 | #include <utils/RefBase.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | |
Mathias Agopian | 5f2165f | 2012-02-24 18:25:41 -0800 | [diff] [blame] | 30 | #include <ui/ANativeObjectBase.h> |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 31 | #include <ui/Fence.h> |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 32 | #include <ui/FramebufferNativeWindow.h> |
Mathias Agopian | 5f2165f | 2012-02-24 18:25:41 -0800 | [diff] [blame] | 33 | #include <ui/Rect.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | |
| 35 | #include <EGL/egl.h> |
| 36 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 37 | #include <hardware/hardware.h> |
| 38 | #include <hardware/gralloc.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 | |
| 40 | // ---------------------------------------------------------------------------- |
| 41 | namespace android { |
| 42 | // ---------------------------------------------------------------------------- |
| 43 | |
Mathias Agopian | 7189c00 | 2009-05-05 18:11:11 -0700 | [diff] [blame] | 44 | class NativeBuffer |
Mathias Agopian | 5f2165f | 2012-02-24 18:25:41 -0800 | [diff] [blame] | 45 | : public ANativeObjectBase< |
Iliyan Malchev | 697526b | 2011-05-01 11:33:26 -0700 | [diff] [blame] | 46 | ANativeWindowBuffer, |
Mathias Agopian | 7189c00 | 2009-05-05 18:11:11 -0700 | [diff] [blame] | 47 | NativeBuffer, |
| 48 | LightRefBase<NativeBuffer> > |
| 49 | { |
| 50 | public: |
| 51 | NativeBuffer(int w, int h, int f, int u) : BASE() { |
Iliyan Malchev | 697526b | 2011-05-01 11:33:26 -0700 | [diff] [blame] | 52 | ANativeWindowBuffer::width = w; |
| 53 | ANativeWindowBuffer::height = h; |
| 54 | ANativeWindowBuffer::format = f; |
| 55 | ANativeWindowBuffer::usage = u; |
Mathias Agopian | 7189c00 | 2009-05-05 18:11:11 -0700 | [diff] [blame] | 56 | } |
| 57 | private: |
| 58 | friend class LightRefBase<NativeBuffer>; |
| 59 | ~NativeBuffer() { }; // this class cannot be overloaded |
| 60 | }; |
| 61 | |
| 62 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 63 | /* |
| 64 | * This implements the (main) framebuffer management. This class is used |
| 65 | * mostly by SurfaceFlinger, but also by command line GL application. |
| 66 | * |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 67 | * In fact this is an implementation of ANativeWindow on top of |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 68 | * the framebuffer. |
| 69 | * |
| 70 | * Currently it is pretty simple, it manages only two buffers (the front and |
| 71 | * back buffer). |
| 72 | * |
| 73 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 74 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 75 | FramebufferNativeWindow::FramebufferNativeWindow() |
Mathias Agopian | 1e16b13 | 2009-05-07 17:40:23 -0700 | [diff] [blame] | 76 | : BASE(), fbDev(0), grDev(0), mUpdateOnDemand(false) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 77 | { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 78 | hw_module_t const* module; |
| 79 | if (hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module) == 0) { |
| 80 | int stride; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 81 | int err; |
Rodrigo Obregon | 71484f2 | 2010-11-03 15:16:18 -0500 | [diff] [blame] | 82 | int i; |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 83 | err = framebuffer_open(module, &fbDev); |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 84 | ALOGE_IF(err, "couldn't open framebuffer HAL (%s)", strerror(-err)); |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 85 | |
| 86 | err = gralloc_open(module, &grDev); |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 87 | ALOGE_IF(err, "couldn't open gralloc HAL (%s)", strerror(-err)); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 88 | |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 89 | // bail out if we can't initialize the modules |
| 90 | if (!fbDev || !grDev) |
| 91 | return; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 92 | |
Mathias Agopian | 1e16b13 | 2009-05-07 17:40:23 -0700 | [diff] [blame] | 93 | mUpdateOnDemand = (fbDev->setUpdateRect != 0); |
| 94 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 95 | // initialize the buffer FIFO |
Rodrigo Obregon | 71484f2 | 2010-11-03 15:16:18 -0500 | [diff] [blame] | 96 | mNumBuffers = NUM_FRAME_BUFFERS; |
| 97 | mNumFreeBuffers = NUM_FRAME_BUFFERS; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 98 | mBufferHead = mNumBuffers-1; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 99 | |
Dima Zavin | c6cd27c | 2012-02-22 14:37:57 -0800 | [diff] [blame] | 100 | /* |
| 101 | * This does not actually change the framebuffer format. It merely |
| 102 | * fakes this format to surfaceflinger so that when it creates |
| 103 | * framebuffer surfaces it will use this format. It's really a giant |
| 104 | * HACK to allow interworking with buggy gralloc+GPU driver |
| 105 | * implementations. You should *NEVER* need to set this for shipping |
| 106 | * devices. |
| 107 | */ |
| 108 | #ifdef FRAMEBUFFER_FORCE_FORMAT |
| 109 | *((uint32_t *)&fbDev->format) = FRAMEBUFFER_FORCE_FORMAT; |
| 110 | #endif |
| 111 | |
Rodrigo Obregon | 71484f2 | 2010-11-03 15:16:18 -0500 | [diff] [blame] | 112 | for (i = 0; i < mNumBuffers; i++) |
| 113 | { |
| 114 | buffers[i] = new NativeBuffer( |
| 115 | fbDev->width, fbDev->height, fbDev->format, GRALLOC_USAGE_HW_FB); |
| 116 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 117 | |
Rodrigo Obregon | 71484f2 | 2010-11-03 15:16:18 -0500 | [diff] [blame] | 118 | for (i = 0; i < mNumBuffers; i++) |
| 119 | { |
| 120 | err = grDev->alloc(grDev, |
| 121 | fbDev->width, fbDev->height, fbDev->format, |
| 122 | GRALLOC_USAGE_HW_FB, &buffers[i]->handle, &buffers[i]->stride); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 123 | |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 124 | ALOGE_IF(err, "fb buffer %d allocation failed w=%d, h=%d, err=%s", |
Rodrigo Obregon | 71484f2 | 2010-11-03 15:16:18 -0500 | [diff] [blame] | 125 | i, fbDev->width, fbDev->height, strerror(-err)); |
| 126 | |
| 127 | if (err) |
| 128 | { |
| 129 | mNumBuffers = i; |
| 130 | mNumFreeBuffers = i; |
| 131 | mBufferHead = mNumBuffers-1; |
| 132 | break; |
| 133 | } |
| 134 | } |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 135 | |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 136 | const_cast<uint32_t&>(ANativeWindow::flags) = fbDev->flags; |
| 137 | const_cast<float&>(ANativeWindow::xdpi) = fbDev->xdpi; |
| 138 | const_cast<float&>(ANativeWindow::ydpi) = fbDev->ydpi; |
| 139 | const_cast<int&>(ANativeWindow::minSwapInterval) = |
Marco Nelissen | a455793 | 2009-09-23 10:54:36 -0700 | [diff] [blame] | 140 | fbDev->minSwapInterval; |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 141 | const_cast<int&>(ANativeWindow::maxSwapInterval) = |
Marco Nelissen | a455793 | 2009-09-23 10:54:36 -0700 | [diff] [blame] | 142 | fbDev->maxSwapInterval; |
| 143 | } else { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 144 | ALOGE("Couldn't get gralloc module"); |
Marco Nelissen | a455793 | 2009-09-23 10:54:36 -0700 | [diff] [blame] | 145 | } |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 146 | |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 147 | ANativeWindow::setSwapInterval = setSwapInterval; |
| 148 | ANativeWindow::dequeueBuffer = dequeueBuffer; |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 149 | ANativeWindow::queueBuffer = queueBuffer; |
| 150 | ANativeWindow::query = query; |
| 151 | ANativeWindow::perform = perform; |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 152 | |
| 153 | ANativeWindow::dequeueBuffer_DEPRECATED = dequeueBuffer_DEPRECATED; |
| 154 | ANativeWindow::lockBuffer_DEPRECATED = lockBuffer_DEPRECATED; |
| 155 | ANativeWindow::queueBuffer_DEPRECATED = queueBuffer_DEPRECATED; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 158 | FramebufferNativeWindow::~FramebufferNativeWindow() |
| 159 | { |
| 160 | if (grDev) { |
| 161 | if (buffers[0] != NULL) |
| 162 | grDev->free(grDev, buffers[0]->handle); |
| 163 | if (buffers[1] != NULL) |
| 164 | grDev->free(grDev, buffers[1]->handle); |
| 165 | gralloc_close(grDev); |
| 166 | } |
| 167 | |
| 168 | if (fbDev) { |
| 169 | framebuffer_close(fbDev); |
| 170 | } |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Mathias Agopian | 1e16b13 | 2009-05-07 17:40:23 -0700 | [diff] [blame] | 173 | status_t FramebufferNativeWindow::setUpdateRectangle(const Rect& r) |
| 174 | { |
| 175 | if (!mUpdateOnDemand) { |
| 176 | return INVALID_OPERATION; |
| 177 | } |
| 178 | return fbDev->setUpdateRect(fbDev, r.left, r.top, r.width(), r.height()); |
| 179 | } |
| 180 | |
Mathias Agopian | 74faca2 | 2009-09-17 16:18:16 -0700 | [diff] [blame] | 181 | status_t FramebufferNativeWindow::compositionComplete() |
| 182 | { |
| 183 | if (fbDev->compositionComplete) { |
| 184 | return fbDev->compositionComplete(fbDev); |
| 185 | } |
| 186 | return INVALID_OPERATION; |
| 187 | } |
| 188 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 189 | int FramebufferNativeWindow::setSwapInterval( |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 190 | ANativeWindow* window, int interval) |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 191 | { |
| 192 | framebuffer_device_t* fb = getSelf(window)->fbDev; |
| 193 | return fb->setSwapInterval(fb, interval); |
| 194 | } |
| 195 | |
Erik Gilling | 1d21a9c | 2010-12-01 16:38:01 -0800 | [diff] [blame] | 196 | void FramebufferNativeWindow::dump(String8& result) { |
| 197 | if (fbDev->common.version >= 1 && fbDev->dump) { |
| 198 | const size_t SIZE = 4096; |
| 199 | char buffer[SIZE]; |
| 200 | |
| 201 | fbDev->dump(fbDev, buffer, SIZE); |
| 202 | result.append(buffer); |
| 203 | } |
| 204 | } |
| 205 | |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 206 | // only for debugging / logging |
| 207 | int FramebufferNativeWindow::getCurrentBufferIndex() const |
| 208 | { |
| 209 | Mutex::Autolock _l(mutex); |
| 210 | const int index = mCurrentBufferIndex; |
| 211 | return index; |
| 212 | } |
| 213 | |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 214 | int FramebufferNativeWindow::dequeueBuffer_DEPRECATED(ANativeWindow* window, |
Iliyan Malchev | 697526b | 2011-05-01 11:33:26 -0700 | [diff] [blame] | 215 | ANativeWindowBuffer** buffer) |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 216 | { |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 217 | int fenceFd = -1; |
| 218 | int result = dequeueBuffer(window, buffer, &fenceFd); |
| 219 | sp<Fence> fence(new Fence(fenceFd)); |
| 220 | int waitResult = fence->wait(Fence::TIMEOUT_NEVER); |
| 221 | if (waitResult != OK) { |
| 222 | ALOGE("dequeueBuffer_DEPRECATED: Fence::wait returned an " |
| 223 | "error: %d", waitResult); |
| 224 | return waitResult; |
| 225 | } |
| 226 | return result; |
| 227 | } |
| 228 | |
| 229 | int FramebufferNativeWindow::dequeueBuffer(ANativeWindow* window, |
| 230 | ANativeWindowBuffer** buffer, int* fenceFd) |
| 231 | { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 232 | FramebufferNativeWindow* self = getSelf(window); |
| 233 | Mutex::Autolock _l(self->mutex); |
| 234 | framebuffer_device_t* fb = self->fbDev; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 235 | |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 236 | int index = self->mBufferHead++; |
| 237 | if (self->mBufferHead >= self->mNumBuffers) |
| 238 | self->mBufferHead = 0; |
| 239 | |
Jesse Hall | a74cbc0 | 2012-06-21 11:35:23 -0700 | [diff] [blame^] | 240 | // wait for a free non-front buffer |
| 241 | while (self->mNumFreeBuffers < 2) { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 242 | self->mCondition.wait(self->mutex); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 243 | } |
Jesse Hall | a74cbc0 | 2012-06-21 11:35:23 -0700 | [diff] [blame^] | 244 | ALOG_ASSERT(self->buffers[index] != self->front); |
| 245 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 246 | // get this buffer |
| 247 | self->mNumFreeBuffers--; |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 248 | self->mCurrentBufferIndex = index; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 249 | |
| 250 | *buffer = self->buffers[index].get(); |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 251 | *fenceFd = -1; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 252 | |
| 253 | return 0; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 254 | } |
| 255 | |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 256 | int FramebufferNativeWindow::lockBuffer_DEPRECATED(ANativeWindow* window, |
Iliyan Malchev | 697526b | 2011-05-01 11:33:26 -0700 | [diff] [blame] | 257 | ANativeWindowBuffer* buffer) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 | { |
Mathias Agopian | 0926f50 | 2009-05-04 14:17:04 -0700 | [diff] [blame] | 259 | return NO_ERROR; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 262 | int FramebufferNativeWindow::queueBuffer_DEPRECATED(ANativeWindow* window, |
Iliyan Malchev | 697526b | 2011-05-01 11:33:26 -0700 | [diff] [blame] | 263 | ANativeWindowBuffer* buffer) |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 264 | { |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 265 | return queueBuffer(window, buffer, -1); |
| 266 | } |
| 267 | |
| 268 | int FramebufferNativeWindow::queueBuffer(ANativeWindow* window, |
| 269 | ANativeWindowBuffer* buffer, int fenceFd) |
| 270 | { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 271 | FramebufferNativeWindow* self = getSelf(window); |
| 272 | Mutex::Autolock _l(self->mutex); |
| 273 | framebuffer_device_t* fb = self->fbDev; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 274 | buffer_handle_t handle = static_cast<NativeBuffer*>(buffer)->handle; |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 275 | |
Jamie Gennis | d8e812c | 2012-06-13 16:32:25 -0700 | [diff] [blame] | 276 | sp<Fence> fence(new Fence(fenceFd)); |
| 277 | fence->wait(Fence::TIMEOUT_NEVER); |
| 278 | |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 279 | const int index = self->mCurrentBufferIndex; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 280 | int res = fb->post(fb, handle); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 281 | self->front = static_cast<NativeBuffer*>(buffer); |
| 282 | self->mNumFreeBuffers++; |
| 283 | self->mCondition.broadcast(); |
| 284 | return res; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 285 | } |
| 286 | |
Iliyan Malchev | 41abd67 | 2011-04-14 16:54:38 -0700 | [diff] [blame] | 287 | int FramebufferNativeWindow::query(const ANativeWindow* window, |
Mathias Agopian | cb6b904 | 2009-07-30 18:14:56 -0700 | [diff] [blame] | 288 | int what, int* value) |
| 289 | { |
Iliyan Malchev | 41abd67 | 2011-04-14 16:54:38 -0700 | [diff] [blame] | 290 | const FramebufferNativeWindow* self = getSelf(window); |
Mathias Agopian | cb6b904 | 2009-07-30 18:14:56 -0700 | [diff] [blame] | 291 | Mutex::Autolock _l(self->mutex); |
| 292 | framebuffer_device_t* fb = self->fbDev; |
| 293 | switch (what) { |
| 294 | case NATIVE_WINDOW_WIDTH: |
| 295 | *value = fb->width; |
| 296 | return NO_ERROR; |
| 297 | case NATIVE_WINDOW_HEIGHT: |
| 298 | *value = fb->height; |
| 299 | return NO_ERROR; |
Mathias Agopian | 6b1f410 | 2009-08-06 16:04:29 -0700 | [diff] [blame] | 300 | case NATIVE_WINDOW_FORMAT: |
| 301 | *value = fb->format; |
| 302 | return NO_ERROR; |
Jamie Gennis | 391bbe2 | 2011-03-14 15:00:06 -0700 | [diff] [blame] | 303 | case NATIVE_WINDOW_CONCRETE_TYPE: |
| 304 | *value = NATIVE_WINDOW_FRAMEBUFFER; |
| 305 | return NO_ERROR; |
Mathias Agopian | 97c602c | 2011-07-19 15:24:46 -0700 | [diff] [blame] | 306 | case NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER: |
| 307 | *value = 0; |
| 308 | return NO_ERROR; |
| 309 | case NATIVE_WINDOW_DEFAULT_WIDTH: |
| 310 | *value = fb->width; |
| 311 | return NO_ERROR; |
| 312 | case NATIVE_WINDOW_DEFAULT_HEIGHT: |
| 313 | *value = fb->height; |
| 314 | return NO_ERROR; |
| 315 | case NATIVE_WINDOW_TRANSFORM_HINT: |
| 316 | *value = 0; |
| 317 | return NO_ERROR; |
Mathias Agopian | cb6b904 | 2009-07-30 18:14:56 -0700 | [diff] [blame] | 318 | } |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 319 | *value = 0; |
Mathias Agopian | cb6b904 | 2009-07-30 18:14:56 -0700 | [diff] [blame] | 320 | return BAD_VALUE; |
| 321 | } |
| 322 | |
Dianne Hackborn | 4b5e91e | 2010-06-30 13:56:17 -0700 | [diff] [blame] | 323 | int FramebufferNativeWindow::perform(ANativeWindow* window, |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 324 | int operation, ...) |
| 325 | { |
| 326 | switch (operation) { |
Mathias Agopian | 55fa251 | 2010-03-11 15:06:54 -0800 | [diff] [blame] | 327 | case NATIVE_WINDOW_CONNECT: |
| 328 | case NATIVE_WINDOW_DISCONNECT: |
Mathias Agopian | bb66c9b | 2011-07-21 14:50:29 -0700 | [diff] [blame] | 329 | case NATIVE_WINDOW_SET_USAGE: |
Mathias Agopian | 7734ebf | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 330 | case NATIVE_WINDOW_SET_BUFFERS_GEOMETRY: |
Mathias Agopian | 7734ebf | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 331 | case NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS: |
Mathias Agopian | 7734ebf | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 332 | case NATIVE_WINDOW_SET_BUFFERS_FORMAT: |
Mathias Agopian | bb66c9b | 2011-07-21 14:50:29 -0700 | [diff] [blame] | 333 | case NATIVE_WINDOW_SET_BUFFERS_TRANSFORM: |
Mathias Agopian | 81a6335 | 2011-07-29 17:55:48 -0700 | [diff] [blame] | 334 | case NATIVE_WINDOW_API_CONNECT: |
| 335 | case NATIVE_WINDOW_API_DISCONNECT: |
Mathias Agopian | bb66c9b | 2011-07-21 14:50:29 -0700 | [diff] [blame] | 336 | // TODO: we should implement these |
Mathias Agopian | 7734ebf | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 337 | return NO_ERROR; |
Mathias Agopian | bb66c9b | 2011-07-21 14:50:29 -0700 | [diff] [blame] | 338 | |
| 339 | case NATIVE_WINDOW_LOCK: |
| 340 | case NATIVE_WINDOW_UNLOCK_AND_POST: |
| 341 | case NATIVE_WINDOW_SET_CROP: |
| 342 | case NATIVE_WINDOW_SET_BUFFER_COUNT: |
| 343 | case NATIVE_WINDOW_SET_BUFFERS_TIMESTAMP: |
Mathias Agopian | 7734ebf | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 344 | case NATIVE_WINDOW_SET_SCALING_MODE: |
| 345 | return INVALID_OPERATION; |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 346 | } |
Mathias Agopian | 7734ebf | 2011-07-13 15:24:42 -0700 | [diff] [blame] | 347 | return NAME_NOT_FOUND; |
Mathias Agopian | 5221271 | 2009-08-11 22:34:02 -0700 | [diff] [blame] | 348 | } |
| 349 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 350 | // ---------------------------------------------------------------------------- |
| 351 | }; // namespace android |
| 352 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 353 | |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 354 | using namespace android; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 355 | |
| 356 | EGLNativeWindowType android_createDisplaySurface(void) |
| 357 | { |
Mathias Agopian | 42db9dc | 2009-08-06 20:46:44 -0700 | [diff] [blame] | 358 | FramebufferNativeWindow* w; |
| 359 | w = new FramebufferNativeWindow(); |
| 360 | if (w->getDevice() == NULL) { |
| 361 | // get a ref so it can be destroyed when we exit this block |
| 362 | sp<FramebufferNativeWindow> ref(w); |
| 363 | return NULL; |
| 364 | } |
| 365 | return (EGLNativeWindowType)w; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 366 | } |