blob: dce1e619a79c6508d61e673ff7094bfb6448697d [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 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
Tao Bao0ecbd762017-01-16 21:16:58 -080017#include "graphics.h"
18
Luke Song846012f2017-09-13 15:56:16 -070019#include <stdint.h>
Tao Baoe8020f42017-02-03 09:30:07 -080020#include <stdio.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080021#include <stdlib.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080022#include <string.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023
Tao Bao557fa1f2017-02-07 12:51:00 -080024#include <memory>
25
Tao Baoed876a72018-07-31 21:32:50 -070026#include <android-base/properties.h>
27
Tao Bao557fa1f2017-02-07 12:51:00 -080028#include "graphics_drm.h"
29#include "graphics_fbdev.h"
Tao Bao0ecbd762017-01-16 21:16:58 -080030#include "minui/minui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080031
Tao Bao9f426332018-06-13 10:39:44 -070032static GRFont* gr_font = nullptr;
Tao Bao557fa1f2017-02-07 12:51:00 -080033static MinuiBackend* gr_backend = nullptr;
Doug Zongker16f97c32014-03-06 16:16:05 -080034
Doug Zongkerc560a672012-12-18 16:31:27 -080035static int overscan_offset_x = 0;
36static int overscan_offset_y = 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080037
Luke Song846012f2017-09-13 15:56:16 -070038static uint32_t gr_current = ~0;
39static constexpr uint32_t alpha_mask = 0xff000000;
Doug Zongker16f97c32014-03-06 16:16:05 -080040
Tao Bao9f426332018-06-13 10:39:44 -070041// gr_draw is owned by backends.
Tao Bao92bdb5a2018-10-21 12:12:37 -070042static GRSurface* gr_draw = nullptr;
Tao Bao44478df2018-07-31 22:01:03 -070043static GRRotation rotation = GRRotation::NONE;
Tao Baoed876a72018-07-31 21:32:50 -070044static PixelFormat pixel_format = PixelFormat::UNKNOWN;
Doug Zongker16f97c32014-03-06 16:16:05 -080045
Luke Song846012f2017-09-13 15:56:16 -070046static bool outside(int x, int y) {
Tao Bao44478df2018-07-31 22:01:03 -070047 auto swapped = (rotation == GRRotation::LEFT || rotation == GRRotation::RIGHT);
48 return x < 0 || x >= (swapped ? gr_draw->height : gr_draw->width) || y < 0 ||
49 y >= (swapped ? gr_draw->width : gr_draw->height);
Doug Zongker16f97c32014-03-06 16:16:05 -080050}
51
Luke Song846012f2017-09-13 15:56:16 -070052const GRFont* gr_sys_font() {
53 return gr_font;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080054}
55
Tao Baoed876a72018-07-31 21:32:50 -070056PixelFormat gr_pixel_format() {
57 return pixel_format;
58}
59
Luke Song846012f2017-09-13 15:56:16 -070060int gr_measure(const GRFont* font, const char* s) {
Tianjie Xu842f2a32018-05-31 18:16:28 -070061 if (font == nullptr) {
62 return -1;
63 }
64
Luke Song846012f2017-09-13 15:56:16 -070065 return font->char_width * strlen(s);
Damien Bargiacchi35fff612016-08-11 15:57:03 -070066}
67
Tianjie Xu842f2a32018-05-31 18:16:28 -070068int gr_font_size(const GRFont* font, int* x, int* y) {
69 if (font == nullptr) {
70 return -1;
71 }
72
Luke Song846012f2017-09-13 15:56:16 -070073 *x = font->char_width;
74 *y = font->char_height;
Tianjie Xu842f2a32018-05-31 18:16:28 -070075 return 0;
Dima Zavin3c7f00e2011-08-30 11:58:24 -070076}
77
Luke Song846012f2017-09-13 15:56:16 -070078// Blends gr_current onto pix value, assumes alpha as most significant byte.
79static inline uint32_t pixel_blend(uint8_t alpha, uint32_t pix) {
80 if (alpha == 255) return gr_current;
81 if (alpha == 0) return pix;
82 uint32_t pix_r = pix & 0xff;
83 uint32_t pix_g = pix & 0xff00;
84 uint32_t pix_b = pix & 0xff0000;
85 uint32_t cur_r = gr_current & 0xff;
86 uint32_t cur_g = gr_current & 0xff00;
87 uint32_t cur_b = gr_current & 0xff0000;
88
89 uint32_t out_r = (pix_r * (255 - alpha) + cur_r * alpha) / 255;
90 uint32_t out_g = (pix_g * (255 - alpha) + cur_g * alpha) / 255;
91 uint32_t out_b = (pix_b * (255 - alpha) + cur_b * alpha) / 255;
92
93 return (out_r & 0xff) | (out_g & 0xff00) | (out_b & 0xff0000) | (gr_current & 0xff000000);
94}
95
Tao Bao9f426332018-06-13 10:39:44 -070096// Increments pixel pointer right, with current rotation.
Luke Song846012f2017-09-13 15:56:16 -070097static void incr_x(uint32_t** p, int row_pixels) {
Tao Bao44478df2018-07-31 22:01:03 -070098 if (rotation == GRRotation::LEFT) {
99 *p = *p - row_pixels;
100 } else if (rotation == GRRotation::RIGHT) {
101 *p = *p + row_pixels;
102 } else if (rotation == GRRotation::DOWN) {
103 *p = *p - 1;
104 } else { // GRRotation::NONE
105 *p = *p + 1;
Luke Song846012f2017-09-13 15:56:16 -0700106 }
107}
108
Tao Bao9f426332018-06-13 10:39:44 -0700109// Increments pixel pointer down, with current rotation.
Luke Song846012f2017-09-13 15:56:16 -0700110static void incr_y(uint32_t** p, int row_pixels) {
Tao Bao44478df2018-07-31 22:01:03 -0700111 if (rotation == GRRotation::LEFT) {
112 *p = *p + 1;
113 } else if (rotation == GRRotation::RIGHT) {
114 *p = *p - 1;
115 } else if (rotation == GRRotation::DOWN) {
116 *p = *p - row_pixels;
117 } else { // GRRotation::NONE
118 *p = *p + row_pixels;
Luke Song846012f2017-09-13 15:56:16 -0700119 }
120}
121
Tao Bao9f426332018-06-13 10:39:44 -0700122// Returns pixel pointer at given coordinates with rotation adjustment.
Tao Bao92bdb5a2018-10-21 12:12:37 -0700123static uint32_t* PixelAt(GRSurface* surface, int x, int y, int row_pixels) {
Luke Song846012f2017-09-13 15:56:16 -0700124 switch (rotation) {
Tao Bao44478df2018-07-31 22:01:03 -0700125 case GRRotation::NONE:
Tao Bao92bdb5a2018-10-21 12:12:37 -0700126 return reinterpret_cast<uint32_t*>(surface->data()) + y * row_pixels + x;
Tao Bao44478df2018-07-31 22:01:03 -0700127 case GRRotation::RIGHT:
Tao Bao92bdb5a2018-10-21 12:12:37 -0700128 return reinterpret_cast<uint32_t*>(surface->data()) + x * row_pixels + (surface->width - y);
Tao Bao44478df2018-07-31 22:01:03 -0700129 case GRRotation::DOWN:
Tao Bao92bdb5a2018-10-21 12:12:37 -0700130 return reinterpret_cast<uint32_t*>(surface->data()) + (surface->height - 1 - y) * row_pixels +
131 (surface->width - 1 - x);
Tao Bao44478df2018-07-31 22:01:03 -0700132 case GRRotation::LEFT:
Tao Bao92bdb5a2018-10-21 12:12:37 -0700133 return reinterpret_cast<uint32_t*>(surface->data()) + (surface->height - 1 - x) * row_pixels +
134 y;
Luke Song846012f2017-09-13 15:56:16 -0700135 default:
Tao Bao44478df2018-07-31 22:01:03 -0700136 printf("invalid rotation %d", static_cast<int>(rotation));
Luke Song846012f2017-09-13 15:56:16 -0700137 }
138 return nullptr;
139}
140
Tao Bao92bdb5a2018-10-21 12:12:37 -0700141static void TextBlend(const uint8_t* src_p, int src_row_bytes, uint32_t* dst_p, int dst_row_pixels,
142 int width, int height) {
Luke Song846012f2017-09-13 15:56:16 -0700143 uint8_t alpha_current = static_cast<uint8_t>((alpha_mask & gr_current) >> 24);
144 for (int j = 0; j < height; ++j) {
Tao Bao92bdb5a2018-10-21 12:12:37 -0700145 const uint8_t* sx = src_p;
Luke Song846012f2017-09-13 15:56:16 -0700146 uint32_t* px = dst_p;
147 for (int i = 0; i < width; ++i, incr_x(&px, dst_row_pixels)) {
148 uint8_t a = *sx++;
149 if (alpha_current < 255) a = (static_cast<uint32_t>(a) * alpha_current) / 255;
150 *px = pixel_blend(a, *px);
Doug Zongker16f97c32014-03-06 16:16:05 -0800151 }
Luke Song846012f2017-09-13 15:56:16 -0700152 src_p += src_row_bytes;
153 incr_y(&dst_p, dst_row_pixels);
154 }
Doug Zongker16f97c32014-03-06 16:16:05 -0800155}
156
Luke Song846012f2017-09-13 15:56:16 -0700157void gr_text(const GRFont* font, int x, int y, const char* s, bool bold) {
158 if (!font || !font->texture || (gr_current & alpha_mask) == 0) return;
Doug Zongker55a36ac2013-03-04 15:49:02 -0800159
Luke Song846012f2017-09-13 15:56:16 -0700160 if (font->texture->pixel_bytes != 1) {
161 printf("gr_text: font has wrong format\n");
162 return;
163 }
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800164
Luke Song846012f2017-09-13 15:56:16 -0700165 bold = bold && (font->texture->height != font->char_height);
Doug Zongkerc560a672012-12-18 16:31:27 -0800166
Luke Song846012f2017-09-13 15:56:16 -0700167 x += overscan_offset_x;
168 y += overscan_offset_y;
Doug Zongker16f97c32014-03-06 16:16:05 -0800169
Luke Song846012f2017-09-13 15:56:16 -0700170 unsigned char ch;
171 while ((ch = *s++)) {
172 if (outside(x, y) || outside(x + font->char_width - 1, y + font->char_height - 1)) break;
Elliott Hughes01a4d082015-03-24 15:21:48 -0700173
Luke Song846012f2017-09-13 15:56:16 -0700174 if (ch < ' ' || ch > '~') {
175 ch = '?';
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800176 }
Luke Song846012f2017-09-13 15:56:16 -0700177
178 int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
Tao Bao92bdb5a2018-10-21 12:12:37 -0700179 const uint8_t* src_p = font->texture->data() + ((ch - ' ') * font->char_width) +
180 (bold ? font->char_height * font->texture->row_bytes : 0);
181 uint32_t* dst_p = PixelAt(gr_draw, x, y, row_pixels);
Luke Song846012f2017-09-13 15:56:16 -0700182
Tao Bao92bdb5a2018-10-21 12:12:37 -0700183 TextBlend(src_p, font->texture->row_bytes, dst_p, row_pixels, font->char_width,
184 font->char_height);
Luke Song846012f2017-09-13 15:56:16 -0700185
186 x += font->char_width;
187 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800188}
189
Tao Bao92bdb5a2018-10-21 12:12:37 -0700190void gr_texticon(int x, int y, const GRSurface* icon) {
Tao Bao9f426332018-06-13 10:39:44 -0700191 if (icon == nullptr) return;
Doug Zongker16f97c32014-03-06 16:16:05 -0800192
Luke Song846012f2017-09-13 15:56:16 -0700193 if (icon->pixel_bytes != 1) {
194 printf("gr_texticon: source has wrong format\n");
195 return;
196 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700197
Luke Song846012f2017-09-13 15:56:16 -0700198 x += overscan_offset_x;
199 y += overscan_offset_y;
Doug Zongkerc560a672012-12-18 16:31:27 -0800200
Luke Song846012f2017-09-13 15:56:16 -0700201 if (outside(x, y) || outside(x + icon->width - 1, y + icon->height - 1)) return;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700202
Luke Song846012f2017-09-13 15:56:16 -0700203 int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
Tao Bao92bdb5a2018-10-21 12:12:37 -0700204 const uint8_t* src_p = icon->data();
205 uint32_t* dst_p = PixelAt(gr_draw, x, y, row_pixels);
206 TextBlend(src_p, icon->row_bytes, dst_p, row_pixels, icon->width, icon->height);
Doug Zongker16f97c32014-03-06 16:16:05 -0800207}
208
Luke Song846012f2017-09-13 15:56:16 -0700209void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) {
210 uint32_t r32 = r, g32 = g, b32 = b, a32 = a;
Adrian Salidocc7b7eb2019-12-12 20:18:09 -0800211 if (pixel_format == PixelFormat::ARGB || pixel_format == PixelFormat::BGRA) {
Tao Baoed876a72018-07-31 21:32:50 -0700212 gr_current = (a32 << 24) | (r32 << 16) | (g32 << 8) | b32;
213 } else {
214 gr_current = (a32 << 24) | (b32 << 16) | (g32 << 8) | r32;
215 }
Doug Zongker16f97c32014-03-06 16:16:05 -0800216}
217
Luke Song846012f2017-09-13 15:56:16 -0700218void gr_clear() {
219 if ((gr_current & 0xff) == ((gr_current >> 8) & 0xff) &&
220 (gr_current & 0xff) == ((gr_current >> 16) & 0xff) &&
221 (gr_current & 0xff) == ((gr_current >> 24) & 0xff) &&
222 gr_draw->row_bytes == gr_draw->width * gr_draw->pixel_bytes) {
Tao Bao92bdb5a2018-10-21 12:12:37 -0700223 memset(gr_draw->data(), gr_current & 0xff, gr_draw->height * gr_draw->row_bytes);
Luke Song846012f2017-09-13 15:56:16 -0700224 } else {
Tao Bao92bdb5a2018-10-21 12:12:37 -0700225 uint32_t* px = reinterpret_cast<uint32_t*>(gr_draw->data());
Luke Song846012f2017-09-13 15:56:16 -0700226 int row_diff = gr_draw->row_bytes / gr_draw->pixel_bytes - gr_draw->width;
227 for (int y = 0; y < gr_draw->height; ++y) {
228 for (int x = 0; x < gr_draw->width; ++x) {
229 *px++ = gr_current;
230 }
231 px += row_diff;
Doug Zongker16f97c32014-03-06 16:16:05 -0800232 }
Luke Song846012f2017-09-13 15:56:16 -0700233 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700234}
235
Luke Song846012f2017-09-13 15:56:16 -0700236void gr_fill(int x1, int y1, int x2, int y2) {
237 x1 += overscan_offset_x;
238 y1 += overscan_offset_y;
Doug Zongkerc560a672012-12-18 16:31:27 -0800239
Luke Song846012f2017-09-13 15:56:16 -0700240 x2 += overscan_offset_x;
241 y2 += overscan_offset_y;
Doug Zongkerc560a672012-12-18 16:31:27 -0800242
Luke Song846012f2017-09-13 15:56:16 -0700243 if (outside(x1, y1) || outside(x2 - 1, y2 - 1)) return;
Doug Zongker16f97c32014-03-06 16:16:05 -0800244
Luke Song846012f2017-09-13 15:56:16 -0700245 int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
Tao Bao92bdb5a2018-10-21 12:12:37 -0700246 uint32_t* p = PixelAt(gr_draw, x1, y1, row_pixels);
Luke Song846012f2017-09-13 15:56:16 -0700247 uint8_t alpha = static_cast<uint8_t>(((gr_current & alpha_mask) >> 24));
248 if (alpha > 0) {
249 for (int y = y1; y < y2; ++y) {
250 uint32_t* px = p;
251 for (int x = x1; x < x2; ++x) {
252 *px = pixel_blend(alpha, *px);
253 incr_x(&px, row_pixels);
254 }
255 incr_y(&p, row_pixels);
Doug Zongker16f97c32014-03-06 16:16:05 -0800256 }
Luke Song846012f2017-09-13 15:56:16 -0700257 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800258}
259
Tao Bao92bdb5a2018-10-21 12:12:37 -0700260void gr_blit(const GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) {
Tao Bao9f426332018-06-13 10:39:44 -0700261 if (source == nullptr) return;
Doug Zongker16f97c32014-03-06 16:16:05 -0800262
Luke Song846012f2017-09-13 15:56:16 -0700263 if (gr_draw->pixel_bytes != source->pixel_bytes) {
264 printf("gr_blit: source has wrong format\n");
265 return;
266 }
267
268 dx += overscan_offset_x;
269 dy += overscan_offset_y;
270
271 if (outside(dx, dy) || outside(dx + w - 1, dy + h - 1)) return;
272
Tao Bao44478df2018-07-31 22:01:03 -0700273 if (rotation != GRRotation::NONE) {
Luke Song846012f2017-09-13 15:56:16 -0700274 int src_row_pixels = source->row_bytes / source->pixel_bytes;
275 int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
Tao Bao92bdb5a2018-10-21 12:12:37 -0700276 const uint32_t* src_py =
277 reinterpret_cast<const uint32_t*>(source->data()) + sy * source->row_bytes / 4 + sx;
278 uint32_t* dst_py = PixelAt(gr_draw, dx, dy, row_pixels);
Luke Song846012f2017-09-13 15:56:16 -0700279
280 for (int y = 0; y < h; y += 1) {
Tao Bao92bdb5a2018-10-21 12:12:37 -0700281 const uint32_t* src_px = src_py;
Luke Song846012f2017-09-13 15:56:16 -0700282 uint32_t* dst_px = dst_py;
283 for (int x = 0; x < w; x += 1) {
284 *dst_px = *src_px++;
285 incr_x(&dst_px, row_pixels);
286 }
287 src_py += src_row_pixels;
288 incr_y(&dst_py, row_pixels);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800289 }
Luke Song846012f2017-09-13 15:56:16 -0700290 } else {
Tao Bao92bdb5a2018-10-21 12:12:37 -0700291 const uint8_t* src_p = source->data() + sy * source->row_bytes + sx * source->pixel_bytes;
292 uint8_t* dst_p = gr_draw->data() + dy * gr_draw->row_bytes + dx * gr_draw->pixel_bytes;
Doug Zongker16f97c32014-03-06 16:16:05 -0800293
Tao Bao9f426332018-06-13 10:39:44 -0700294 for (int i = 0; i < h; ++i) {
Luke Song846012f2017-09-13 15:56:16 -0700295 memcpy(dst_p, src_p, w * source->pixel_bytes);
296 src_p += source->row_bytes;
297 dst_p += gr_draw->row_bytes;
Doug Zongker16f97c32014-03-06 16:16:05 -0800298 }
Luke Song846012f2017-09-13 15:56:16 -0700299 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800300}
301
Tao Bao9f426332018-06-13 10:39:44 -0700302unsigned int gr_get_width(const GRSurface* surface) {
303 if (surface == nullptr) {
Luke Song846012f2017-09-13 15:56:16 -0700304 return 0;
305 }
306 return surface->width;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307}
308
Tao Bao9f426332018-06-13 10:39:44 -0700309unsigned int gr_get_height(const GRSurface* surface) {
310 if (surface == nullptr) {
Luke Song846012f2017-09-13 15:56:16 -0700311 return 0;
312 }
313 return surface->height;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800314}
315
Damien Bargiacchid00f5eb2016-09-09 07:14:08 -0700316int gr_init_font(const char* name, GRFont** dest) {
Luke Song846012f2017-09-13 15:56:16 -0700317 GRFont* font = static_cast<GRFont*>(calloc(1, sizeof(*gr_font)));
318 if (font == nullptr) {
319 return -1;
320 }
Damien Bargiacchid00f5eb2016-09-09 07:14:08 -0700321
Luke Song846012f2017-09-13 15:56:16 -0700322 int res = res_create_alpha_surface(name, &(font->texture));
323 if (res < 0) {
324 free(font);
325 return res;
326 }
Damien Bargiacchi35fff612016-08-11 15:57:03 -0700327
Luke Song846012f2017-09-13 15:56:16 -0700328 // The font image should be a 96x2 array of character images. The
329 // columns are the printable ASCII characters 0x20 - 0x7f. The
330 // top row is regular text; the bottom row is bold.
331 font->char_width = font->texture->width / 96;
332 font->char_height = font->texture->height / 2;
Damien Bargiacchid00f5eb2016-09-09 07:14:08 -0700333
Luke Song846012f2017-09-13 15:56:16 -0700334 *dest = font;
Damien Bargiacchi35fff612016-08-11 15:57:03 -0700335
Luke Song846012f2017-09-13 15:56:16 -0700336 return 0;
Damien Bargiacchi35fff612016-08-11 15:57:03 -0700337}
338
Doug Zongker5290f202014-03-11 13:22:04 -0700339void gr_flip() {
Tao Bao557fa1f2017-02-07 12:51:00 -0800340 gr_draw = gr_backend->Flip();
Doug Zongker5290f202014-03-11 13:22:04 -0700341}
342
Tao Bao557fa1f2017-02-07 12:51:00 -0800343int gr_init() {
Tao Baoed876a72018-07-31 21:32:50 -0700344 // pixel_format needs to be set before loading any resources or initializing backends.
Tao Bao050feb02018-09-05 21:45:42 -0700345 std::string format = android::base::GetProperty("ro.minui.pixel_format", "");
Tao Baoed876a72018-07-31 21:32:50 -0700346 if (format == "ABGR_8888") {
347 pixel_format = PixelFormat::ABGR;
348 } else if (format == "RGBX_8888") {
349 pixel_format = PixelFormat::RGBX;
Adrian Salidocc7b7eb2019-12-12 20:18:09 -0800350 } else if (format == "ARGB_8888") {
351 pixel_format = PixelFormat::ARGB;
Tao Baoed876a72018-07-31 21:32:50 -0700352 } else if (format == "BGRA_8888") {
353 pixel_format = PixelFormat::BGRA;
354 } else {
355 pixel_format = PixelFormat::UNKNOWN;
356 }
357
Tianjie Xu55a2c4e2018-03-29 11:07:50 -0700358 int ret = gr_init_font("font", &gr_font);
359 if (ret != 0) {
Tianjie Xu842f2a32018-05-31 18:16:28 -0700360 printf("Failed to init font: %d, continuing graphic backend initialization without font file\n",
361 ret);
Tianjie Xu55a2c4e2018-03-29 11:07:50 -0700362 }
Doug Zongker16f97c32014-03-06 16:16:05 -0800363
Marissa Wall025ce542020-02-28 11:22:46 -0800364 auto backend = std::unique_ptr<MinuiBackend>{ std::make_unique<MinuiBackendDrm>() };
Tao Bao557fa1f2017-02-07 12:51:00 -0800365 gr_draw = backend->Init();
Greg Hackmann41909dd2014-04-25 10:39:50 -0700366
Tao Bao557fa1f2017-02-07 12:51:00 -0800367 if (!gr_draw) {
Tao Bao557fa1f2017-02-07 12:51:00 -0800368 backend = std::make_unique<MinuiBackendFbdev>();
369 gr_draw = backend->Init();
370 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800371
Tao Bao557fa1f2017-02-07 12:51:00 -0800372 if (!gr_draw) {
373 return -1;
374 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800375
Tao Bao557fa1f2017-02-07 12:51:00 -0800376 gr_backend = backend.release();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800377
Tao Bao050feb02018-09-05 21:45:42 -0700378 int overscan_percent = android::base::GetIntProperty("ro.minui.overscan_percent", 0);
Tao Bao557fa1f2017-02-07 12:51:00 -0800379 overscan_offset_x = gr_draw->width * overscan_percent / 100;
380 overscan_offset_y = gr_draw->height * overscan_percent / 100;
381
382 gr_flip();
383 gr_flip();
Tianjie Xuccf00a22018-06-05 17:10:23 -0700384 if (!gr_draw) {
385 printf("gr_init: gr_draw becomes nullptr after gr_flip\n");
386 return -1;
387 }
Tao Bao557fa1f2017-02-07 12:51:00 -0800388
Tao Baoed876a72018-07-31 21:32:50 -0700389 std::string rotation_str =
Tao Bao050feb02018-09-05 21:45:42 -0700390 android::base::GetProperty("ro.minui.default_rotation", "ROTATION_NONE");
Tao Bao44478df2018-07-31 22:01:03 -0700391 if (rotation_str == "ROTATION_RIGHT") {
392 gr_rotate(GRRotation::RIGHT);
393 } else if (rotation_str == "ROTATION_DOWN") {
394 gr_rotate(GRRotation::DOWN);
395 } else if (rotation_str == "ROTATION_LEFT") {
396 gr_rotate(GRRotation::LEFT);
Tao Baoed876a72018-07-31 21:32:50 -0700397 } else { // "ROTATION_NONE" or unknown string
Tao Bao44478df2018-07-31 22:01:03 -0700398 gr_rotate(GRRotation::NONE);
399 }
Luke Song846012f2017-09-13 15:56:16 -0700400
401 if (gr_draw->pixel_bytes != 4) {
402 printf("gr_init: Only 4-byte pixel formats supported\n");
403 }
404
Tao Bao557fa1f2017-02-07 12:51:00 -0800405 return 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800406}
407
Tao Bao557fa1f2017-02-07 12:51:00 -0800408void gr_exit() {
409 delete gr_backend;
Tao Bao9f426332018-06-13 10:39:44 -0700410 gr_backend = nullptr;
411
412 delete gr_font;
413 gr_font = nullptr;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800414}
415
Tao Bao557fa1f2017-02-07 12:51:00 -0800416int gr_fb_width() {
Tao Bao44478df2018-07-31 22:01:03 -0700417 return (rotation == GRRotation::LEFT || rotation == GRRotation::RIGHT)
418 ? gr_draw->height - 2 * overscan_offset_y
419 : gr_draw->width - 2 * overscan_offset_x;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800420}
421
Tao Bao557fa1f2017-02-07 12:51:00 -0800422int gr_fb_height() {
Tao Bao44478df2018-07-31 22:01:03 -0700423 return (rotation == GRRotation::LEFT || rotation == GRRotation::RIGHT)
424 ? gr_draw->width - 2 * overscan_offset_x
425 : gr_draw->height - 2 * overscan_offset_y;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800426}
Dima Zavin4daf48a2011-08-30 11:59:20 -0700427
Tao Bao557fa1f2017-02-07 12:51:00 -0800428void gr_fb_blank(bool blank) {
429 gr_backend->Blank(blank);
Dima Zavin4daf48a2011-08-30 11:59:20 -0700430}
Luke Song846012f2017-09-13 15:56:16 -0700431
432void gr_rotate(GRRotation rot) {
433 rotation = rot;
434}