2009-03-04 04:28:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-01-17 06:16:58 +01:00
|
|
|
#include "graphics.h"
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
#include <stdint.h>
|
2017-02-03 18:30:07 +01:00
|
|
|
#include <stdio.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <stdlib.h>
|
2015-01-30 05:50:08 +01:00
|
|
|
#include <string.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2018-08-01 06:32:50 +02:00
|
|
|
#include <android-base/properties.h>
|
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
#include "graphics_drm.h"
|
|
|
|
#include "graphics_fbdev.h"
|
2017-01-17 06:16:58 +01:00
|
|
|
#include "minui/minui.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
static GRFont* gr_font = nullptr;
|
2017-02-07 21:51:00 +01:00
|
|
|
static MinuiBackend* gr_backend = nullptr;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2012-12-19 01:31:27 +01:00
|
|
|
static int overscan_offset_x = 0;
|
|
|
|
static int overscan_offset_y = 0;
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
static uint32_t gr_current = ~0;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
// gr_draw is owned by backends.
|
2018-10-21 21:12:37 +02:00
|
|
|
static GRSurface* gr_draw = nullptr;
|
2018-08-01 07:01:03 +02:00
|
|
|
static GRRotation rotation = GRRotation::NONE;
|
2018-08-01 06:32:50 +02:00
|
|
|
static PixelFormat pixel_format = PixelFormat::UNKNOWN;
|
2021-09-23 18:11:51 +02:00
|
|
|
// The graphics backend list that provides fallback options for the default backend selection.
|
|
|
|
// For example, it will fist try DRM, then try FBDEV if DRM is unavailable.
|
|
|
|
constexpr auto default_backends = { GraphicsBackend::DRM, GraphicsBackend::FBDEV };
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
static bool outside(int x, int y) {
|
2018-08-01 07:01:03 +02:00
|
|
|
auto swapped = (rotation == GRRotation::LEFT || rotation == GRRotation::RIGHT);
|
|
|
|
return x < 0 || x >= (swapped ? gr_draw->height : gr_draw->width) || y < 0 ||
|
|
|
|
y >= (swapped ? gr_draw->width : gr_draw->height);
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
const GRFont* gr_sys_font() {
|
|
|
|
return gr_font;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 06:32:50 +02:00
|
|
|
PixelFormat gr_pixel_format() {
|
|
|
|
return pixel_format;
|
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
int gr_measure(const GRFont* font, const char* s) {
|
2018-06-01 03:16:28 +02:00
|
|
|
if (font == nullptr) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
return font->char_width * strlen(s);
|
2016-08-12 00:57:03 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 03:16:28 +02:00
|
|
|
int gr_font_size(const GRFont* font, int* x, int* y) {
|
|
|
|
if (font == nullptr) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
*x = font->char_width;
|
|
|
|
*y = font->char_height;
|
2018-06-01 03:16:28 +02:00
|
|
|
return 0;
|
2011-08-30 20:58:24 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
// Blends gr_current onto pix value, assumes alpha as most significant byte.
|
2021-01-31 03:16:25 +01:00
|
|
|
static inline uint32_t pixel_blend_argb(uint8_t alpha, uint32_t pix) {
|
2017-09-14 00:56:16 +02:00
|
|
|
if (alpha == 255) return gr_current;
|
|
|
|
if (alpha == 0) return pix;
|
|
|
|
uint32_t pix_r = pix & 0xff;
|
|
|
|
uint32_t pix_g = pix & 0xff00;
|
|
|
|
uint32_t pix_b = pix & 0xff0000;
|
|
|
|
uint32_t cur_r = gr_current & 0xff;
|
|
|
|
uint32_t cur_g = gr_current & 0xff00;
|
|
|
|
uint32_t cur_b = gr_current & 0xff0000;
|
|
|
|
|
|
|
|
uint32_t out_r = (pix_r * (255 - alpha) + cur_r * alpha) / 255;
|
|
|
|
uint32_t out_g = (pix_g * (255 - alpha) + cur_g * alpha) / 255;
|
|
|
|
uint32_t out_b = (pix_b * (255 - alpha) + cur_b * alpha) / 255;
|
|
|
|
|
|
|
|
return (out_r & 0xff) | (out_g & 0xff00) | (out_b & 0xff0000) | (gr_current & 0xff000000);
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 03:16:25 +01:00
|
|
|
static inline uint32_t pixel_blend_rgba(uint8_t alpha, uint32_t pix) {
|
|
|
|
if (alpha == 255) return gr_current;
|
|
|
|
if (alpha == 0) return pix;
|
|
|
|
uint32_t pix_r = pix & 0xff00;
|
|
|
|
uint32_t pix_g = pix & 0xff0000;
|
|
|
|
uint32_t pix_b = pix & 0xff000000;
|
|
|
|
uint32_t cur_r = gr_current & 0xff00;
|
|
|
|
uint32_t cur_g = gr_current & 0xff0000;
|
|
|
|
uint32_t cur_b = gr_current & 0xff000000;
|
|
|
|
|
|
|
|
uint32_t out_r = (pix_r * (255 - alpha) + cur_r * alpha) / 255;
|
|
|
|
uint32_t out_g = (pix_g * (255 - alpha) + cur_g * alpha) / 255;
|
|
|
|
uint32_t out_b = (pix_b * (255 - alpha) + cur_b * alpha) / 255;
|
|
|
|
|
|
|
|
return (gr_current & 0xff) | (out_r & 0xff00) | (out_g & 0xff0000) | (out_b & 0xff000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t pixel_blend(uint8_t alpha, uint32_t pix) {
|
|
|
|
if (pixel_format == PixelFormat::RGBA) {
|
|
|
|
return pixel_blend_rgba(alpha, pix);
|
|
|
|
}
|
|
|
|
return pixel_blend_argb(alpha, pix);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t get_alphamask() {
|
|
|
|
if (pixel_format == PixelFormat::RGBA) {
|
|
|
|
return 0x000000ff;
|
|
|
|
}
|
|
|
|
return 0xff000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint8_t get_alpha_shift() {
|
|
|
|
if (pixel_format == PixelFormat::RGBA) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 24;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint8_t get_alpha(uint32_t pix) {
|
|
|
|
return static_cast<uint8_t>((pix & (gr_current & get_alphamask())) >> get_alpha_shift());
|
|
|
|
}
|
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
// Increments pixel pointer right, with current rotation.
|
2017-09-14 00:56:16 +02:00
|
|
|
static void incr_x(uint32_t** p, int row_pixels) {
|
2018-08-01 07:01:03 +02:00
|
|
|
if (rotation == GRRotation::LEFT) {
|
|
|
|
*p = *p - row_pixels;
|
|
|
|
} else if (rotation == GRRotation::RIGHT) {
|
|
|
|
*p = *p + row_pixels;
|
|
|
|
} else if (rotation == GRRotation::DOWN) {
|
|
|
|
*p = *p - 1;
|
|
|
|
} else { // GRRotation::NONE
|
|
|
|
*p = *p + 1;
|
2017-09-14 00:56:16 +02:00
|
|
|
}
|
|
|
|
}
|
2013-03-05 00:49:02 +01:00
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
// Increments pixel pointer down, with current rotation.
|
2017-09-14 00:56:16 +02:00
|
|
|
static void incr_y(uint32_t** p, int row_pixels) {
|
2018-08-01 07:01:03 +02:00
|
|
|
if (rotation == GRRotation::LEFT) {
|
|
|
|
*p = *p + 1;
|
|
|
|
} else if (rotation == GRRotation::RIGHT) {
|
|
|
|
*p = *p - 1;
|
|
|
|
} else if (rotation == GRRotation::DOWN) {
|
|
|
|
*p = *p - row_pixels;
|
|
|
|
} else { // GRRotation::NONE
|
|
|
|
*p = *p + row_pixels;
|
2017-09-14 00:56:16 +02:00
|
|
|
}
|
|
|
|
}
|
2013-03-07 00:01:11 +01:00
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
// Returns pixel pointer at given coordinates with rotation adjustment.
|
2018-10-21 21:12:37 +02:00
|
|
|
static uint32_t* PixelAt(GRSurface* surface, int x, int y, int row_pixels) {
|
2017-09-14 00:56:16 +02:00
|
|
|
switch (rotation) {
|
2018-08-01 07:01:03 +02:00
|
|
|
case GRRotation::NONE:
|
2018-10-21 21:12:37 +02:00
|
|
|
return reinterpret_cast<uint32_t*>(surface->data()) + y * row_pixels + x;
|
2018-08-01 07:01:03 +02:00
|
|
|
case GRRotation::RIGHT:
|
2018-10-21 21:12:37 +02:00
|
|
|
return reinterpret_cast<uint32_t*>(surface->data()) + x * row_pixels + (surface->width - y);
|
2018-08-01 07:01:03 +02:00
|
|
|
case GRRotation::DOWN:
|
2018-10-21 21:12:37 +02:00
|
|
|
return reinterpret_cast<uint32_t*>(surface->data()) + (surface->height - 1 - y) * row_pixels +
|
|
|
|
(surface->width - 1 - x);
|
2018-08-01 07:01:03 +02:00
|
|
|
case GRRotation::LEFT:
|
2018-10-21 21:12:37 +02:00
|
|
|
return reinterpret_cast<uint32_t*>(surface->data()) + (surface->height - 1 - x) * row_pixels +
|
|
|
|
y;
|
2017-09-14 00:56:16 +02:00
|
|
|
default:
|
2018-08-01 07:01:03 +02:00
|
|
|
printf("invalid rotation %d", static_cast<int>(rotation));
|
2017-09-14 00:56:16 +02:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-12-19 01:31:27 +01:00
|
|
|
|
2018-10-21 21:12:37 +02:00
|
|
|
static void TextBlend(const uint8_t* src_p, int src_row_bytes, uint32_t* dst_p, int dst_row_pixels,
|
|
|
|
int width, int height) {
|
2021-01-31 03:16:25 +01:00
|
|
|
uint8_t alpha_current = get_alpha(gr_current);
|
2017-09-14 00:56:16 +02:00
|
|
|
for (int j = 0; j < height; ++j) {
|
2018-10-21 21:12:37 +02:00
|
|
|
const uint8_t* sx = src_p;
|
2017-09-14 00:56:16 +02:00
|
|
|
uint32_t* px = dst_p;
|
|
|
|
for (int i = 0; i < width; ++i, incr_x(&px, dst_row_pixels)) {
|
|
|
|
uint8_t a = *sx++;
|
|
|
|
if (alpha_current < 255) a = (static_cast<uint32_t>(a) * alpha_current) / 255;
|
|
|
|
*px = pixel_blend(a, *px);
|
|
|
|
}
|
|
|
|
src_p += src_row_bytes;
|
|
|
|
incr_y(&dst_p, dst_row_pixels);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gr_text(const GRFont* font, int x, int y, const char* s, bool bold) {
|
2021-01-31 03:16:25 +01:00
|
|
|
if (!font || !font->texture || (gr_current & get_alphamask()) == 0) return;
|
2017-09-14 00:56:16 +02:00
|
|
|
|
|
|
|
if (font->texture->pixel_bytes != 1) {
|
|
|
|
printf("gr_text: font has wrong format\n");
|
|
|
|
return;
|
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
bold = bold && (font->texture->height != font->char_height);
|
2015-03-24 23:21:48 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
x += overscan_offset_x;
|
|
|
|
y += overscan_offset_y;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
unsigned char ch;
|
|
|
|
while ((ch = *s++)) {
|
|
|
|
if (outside(x, y) || outside(x + font->char_width - 1, y + font->char_height - 1)) break;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
if (ch < ' ' || ch > '~') {
|
|
|
|
ch = '?';
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-09-14 00:56:16 +02:00
|
|
|
|
|
|
|
int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
|
2018-10-21 21:12:37 +02:00
|
|
|
const uint8_t* src_p = font->texture->data() + ((ch - ' ') * font->char_width) +
|
|
|
|
(bold ? font->char_height * font->texture->row_bytes : 0);
|
|
|
|
uint32_t* dst_p = PixelAt(gr_draw, x, y, row_pixels);
|
2017-09-14 00:56:16 +02:00
|
|
|
|
2018-10-21 21:12:37 +02:00
|
|
|
TextBlend(src_p, font->texture->row_bytes, dst_p, row_pixels, font->char_width,
|
|
|
|
font->char_height);
|
2017-09-14 00:56:16 +02:00
|
|
|
|
|
|
|
x += font->char_width;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-10-21 21:12:37 +02:00
|
|
|
void gr_texticon(int x, int y, const GRSurface* icon) {
|
2018-06-13 19:39:44 +02:00
|
|
|
if (icon == nullptr) return;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
if (icon->pixel_bytes != 1) {
|
|
|
|
printf("gr_texticon: source has wrong format\n");
|
|
|
|
return;
|
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
x += overscan_offset_x;
|
|
|
|
y += overscan_offset_y;
|
2012-12-19 01:31:27 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
if (outside(x, y) || outside(x + icon->width - 1, y + icon->height - 1)) return;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
|
2018-10-21 21:12:37 +02:00
|
|
|
const uint8_t* src_p = icon->data();
|
|
|
|
uint32_t* dst_p = PixelAt(gr_draw, x, y, row_pixels);
|
|
|
|
TextBlend(src_p, icon->row_bytes, dst_p, row_pixels, icon->width, icon->height);
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) {
|
|
|
|
uint32_t r32 = r, g32 = g, b32 = b, a32 = a;
|
2019-12-13 05:18:09 +01:00
|
|
|
if (pixel_format == PixelFormat::ARGB || pixel_format == PixelFormat::BGRA) {
|
2018-08-01 06:32:50 +02:00
|
|
|
gr_current = (a32 << 24) | (r32 << 16) | (g32 << 8) | b32;
|
2021-01-31 03:16:25 +01:00
|
|
|
} else if (pixel_format == PixelFormat::RGBA) {
|
|
|
|
gr_current = (b32 << 24) | (g32 << 16) | (r32 << 8) | a32;
|
2018-08-01 06:32:50 +02:00
|
|
|
} else {
|
|
|
|
gr_current = (a32 << 24) | (b32 << 16) | (g32 << 8) | r32;
|
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
void gr_clear() {
|
|
|
|
if ((gr_current & 0xff) == ((gr_current >> 8) & 0xff) &&
|
|
|
|
(gr_current & 0xff) == ((gr_current >> 16) & 0xff) &&
|
|
|
|
(gr_current & 0xff) == ((gr_current >> 24) & 0xff) &&
|
|
|
|
gr_draw->row_bytes == gr_draw->width * gr_draw->pixel_bytes) {
|
2018-10-21 21:12:37 +02:00
|
|
|
memset(gr_draw->data(), gr_current & 0xff, gr_draw->height * gr_draw->row_bytes);
|
2017-09-14 00:56:16 +02:00
|
|
|
} else {
|
2018-10-21 21:12:37 +02:00
|
|
|
uint32_t* px = reinterpret_cast<uint32_t*>(gr_draw->data());
|
2017-09-14 00:56:16 +02:00
|
|
|
int row_diff = gr_draw->row_bytes / gr_draw->pixel_bytes - gr_draw->width;
|
|
|
|
for (int y = 0; y < gr_draw->height; ++y) {
|
|
|
|
for (int x = 0; x < gr_draw->width; ++x) {
|
|
|
|
*px++ = gr_current;
|
|
|
|
}
|
|
|
|
px += row_diff;
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
2017-09-14 00:56:16 +02:00
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
void gr_fill(int x1, int y1, int x2, int y2) {
|
|
|
|
x1 += overscan_offset_x;
|
|
|
|
y1 += overscan_offset_y;
|
|
|
|
|
|
|
|
x2 += overscan_offset_x;
|
|
|
|
y2 += overscan_offset_y;
|
|
|
|
|
|
|
|
if (outside(x1, y1) || outside(x2 - 1, y2 - 1)) return;
|
|
|
|
|
|
|
|
int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
|
2018-10-21 21:12:37 +02:00
|
|
|
uint32_t* p = PixelAt(gr_draw, x1, y1, row_pixels);
|
2021-01-31 03:16:25 +01:00
|
|
|
uint8_t alpha = get_alpha(gr_current);
|
2017-09-14 00:56:16 +02:00
|
|
|
if (alpha > 0) {
|
|
|
|
for (int y = y1; y < y2; ++y) {
|
|
|
|
uint32_t* px = p;
|
|
|
|
for (int x = x1; x < x2; ++x) {
|
|
|
|
*px = pixel_blend(alpha, *px);
|
|
|
|
incr_x(&px, row_pixels);
|
|
|
|
}
|
|
|
|
incr_y(&p, row_pixels);
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
2017-09-14 00:56:16 +02:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-10-21 21:12:37 +02:00
|
|
|
void gr_blit(const GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) {
|
2018-06-13 19:39:44 +02:00
|
|
|
if (source == nullptr) return;
|
2012-12-19 01:31:27 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
if (gr_draw->pixel_bytes != source->pixel_bytes) {
|
|
|
|
printf("gr_blit: source has wrong format\n");
|
|
|
|
return;
|
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
dx += overscan_offset_x;
|
|
|
|
dy += overscan_offset_y;
|
|
|
|
|
|
|
|
if (outside(dx, dy) || outside(dx + w - 1, dy + h - 1)) return;
|
|
|
|
|
2018-08-01 07:01:03 +02:00
|
|
|
if (rotation != GRRotation::NONE) {
|
2017-09-14 00:56:16 +02:00
|
|
|
int src_row_pixels = source->row_bytes / source->pixel_bytes;
|
|
|
|
int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes;
|
2018-10-21 21:12:37 +02:00
|
|
|
const uint32_t* src_py =
|
|
|
|
reinterpret_cast<const uint32_t*>(source->data()) + sy * source->row_bytes / 4 + sx;
|
|
|
|
uint32_t* dst_py = PixelAt(gr_draw, dx, dy, row_pixels);
|
2017-09-14 00:56:16 +02:00
|
|
|
|
|
|
|
for (int y = 0; y < h; y += 1) {
|
2018-10-21 21:12:37 +02:00
|
|
|
const uint32_t* src_px = src_py;
|
2017-09-14 00:56:16 +02:00
|
|
|
uint32_t* dst_px = dst_py;
|
|
|
|
for (int x = 0; x < w; x += 1) {
|
|
|
|
*dst_px = *src_px++;
|
|
|
|
incr_x(&dst_px, row_pixels);
|
|
|
|
}
|
|
|
|
src_py += src_row_pixels;
|
|
|
|
incr_y(&dst_py, row_pixels);
|
|
|
|
}
|
|
|
|
} else {
|
2018-10-21 21:12:37 +02:00
|
|
|
const uint8_t* src_p = source->data() + sy * source->row_bytes + sx * source->pixel_bytes;
|
|
|
|
uint8_t* dst_p = gr_draw->data() + dy * gr_draw->row_bytes + dx * gr_draw->pixel_bytes;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
for (int i = 0; i < h; ++i) {
|
2017-09-14 00:56:16 +02:00
|
|
|
memcpy(dst_p, src_p, w * source->pixel_bytes);
|
|
|
|
src_p += source->row_bytes;
|
|
|
|
dst_p += gr_draw->row_bytes;
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
2017-09-14 00:56:16 +02:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
unsigned int gr_get_width(const GRSurface* surface) {
|
|
|
|
if (surface == nullptr) {
|
2017-09-14 00:56:16 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return surface->width;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-06-13 19:39:44 +02:00
|
|
|
unsigned int gr_get_height(const GRSurface* surface) {
|
|
|
|
if (surface == nullptr) {
|
2017-09-14 00:56:16 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return surface->height;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2016-09-09 16:14:08 +02:00
|
|
|
int gr_init_font(const char* name, GRFont** dest) {
|
2017-09-14 00:56:16 +02:00
|
|
|
GRFont* font = static_cast<GRFont*>(calloc(1, sizeof(*gr_font)));
|
|
|
|
if (font == nullptr) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-09-09 16:14:08 +02:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
int res = res_create_alpha_surface(name, &(font->texture));
|
|
|
|
if (res < 0) {
|
|
|
|
free(font);
|
|
|
|
return res;
|
|
|
|
}
|
2016-08-12 00:57:03 +02:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
// The font image should be a 96x2 array of character images. The
|
|
|
|
// columns are the printable ASCII characters 0x20 - 0x7f. The
|
|
|
|
// top row is regular text; the bottom row is bold.
|
|
|
|
font->char_width = font->texture->width / 96;
|
|
|
|
font->char_height = font->texture->height / 2;
|
2016-09-09 16:14:08 +02:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
*dest = font;
|
2016-08-12 00:57:03 +02:00
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
return 0;
|
2016-08-12 00:57:03 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 21:22:04 +01:00
|
|
|
void gr_flip() {
|
2017-02-07 21:51:00 +01:00
|
|
|
gr_draw = gr_backend->Flip();
|
2014-03-11 21:22:04 +01:00
|
|
|
}
|
|
|
|
|
2021-09-23 18:11:51 +02:00
|
|
|
std::unique_ptr<MinuiBackend> create_backend(GraphicsBackend backend) {
|
|
|
|
switch (backend) {
|
|
|
|
case GraphicsBackend::DRM:
|
|
|
|
return std::make_unique<MinuiBackendDrm>();
|
|
|
|
case GraphicsBackend::FBDEV:
|
|
|
|
return std::make_unique<MinuiBackendFbdev>();
|
|
|
|
default:
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
int gr_init() {
|
2021-09-23 18:11:51 +02:00
|
|
|
return gr_init(default_backends);
|
|
|
|
}
|
|
|
|
|
|
|
|
int gr_init(std::initializer_list<GraphicsBackend> backends) {
|
2018-08-01 06:32:50 +02:00
|
|
|
// pixel_format needs to be set before loading any resources or initializing backends.
|
2018-09-06 06:45:42 +02:00
|
|
|
std::string format = android::base::GetProperty("ro.minui.pixel_format", "");
|
2018-08-01 06:32:50 +02:00
|
|
|
if (format == "ABGR_8888") {
|
|
|
|
pixel_format = PixelFormat::ABGR;
|
|
|
|
} else if (format == "RGBX_8888") {
|
|
|
|
pixel_format = PixelFormat::RGBX;
|
2019-12-13 05:18:09 +01:00
|
|
|
} else if (format == "ARGB_8888") {
|
|
|
|
pixel_format = PixelFormat::ARGB;
|
2018-08-01 06:32:50 +02:00
|
|
|
} else if (format == "BGRA_8888") {
|
|
|
|
pixel_format = PixelFormat::BGRA;
|
2021-01-31 03:16:25 +01:00
|
|
|
} else if (format == "RGBA_8888") {
|
|
|
|
pixel_format = PixelFormat::RGBA;
|
2018-08-01 06:32:50 +02:00
|
|
|
} else {
|
|
|
|
pixel_format = PixelFormat::UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2018-03-29 20:07:50 +02:00
|
|
|
int ret = gr_init_font("font", &gr_font);
|
|
|
|
if (ret != 0) {
|
2018-06-01 03:16:28 +02:00
|
|
|
printf("Failed to init font: %d, continuing graphic backend initialization without font file\n",
|
|
|
|
ret);
|
2018-03-29 20:07:50 +02:00
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2021-09-23 18:11:51 +02:00
|
|
|
std::unique_ptr<MinuiBackend> minui_backend;
|
|
|
|
for (GraphicsBackend backend : backends) {
|
|
|
|
minui_backend = create_backend(backend);
|
|
|
|
if (!minui_backend) {
|
|
|
|
printf("gr_init: minui_backend %d is a nullptr\n", backend);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gr_draw = minui_backend->Init();
|
|
|
|
if (gr_draw) break;
|
2017-02-07 21:51:00 +01:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
if (!gr_draw) {
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2021-09-23 18:11:51 +02:00
|
|
|
gr_backend = minui_backend.release();
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2018-09-06 06:45:42 +02:00
|
|
|
int overscan_percent = android::base::GetIntProperty("ro.minui.overscan_percent", 0);
|
2017-02-07 21:51:00 +01:00
|
|
|
overscan_offset_x = gr_draw->width * overscan_percent / 100;
|
|
|
|
overscan_offset_y = gr_draw->height * overscan_percent / 100;
|
|
|
|
|
|
|
|
gr_flip();
|
|
|
|
gr_flip();
|
2018-06-06 02:10:23 +02:00
|
|
|
if (!gr_draw) {
|
|
|
|
printf("gr_init: gr_draw becomes nullptr after gr_flip\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2017-02-07 21:51:00 +01:00
|
|
|
|
2018-08-01 06:32:50 +02:00
|
|
|
std::string rotation_str =
|
2018-09-06 06:45:42 +02:00
|
|
|
android::base::GetProperty("ro.minui.default_rotation", "ROTATION_NONE");
|
2018-08-01 07:01:03 +02:00
|
|
|
if (rotation_str == "ROTATION_RIGHT") {
|
|
|
|
gr_rotate(GRRotation::RIGHT);
|
|
|
|
} else if (rotation_str == "ROTATION_DOWN") {
|
|
|
|
gr_rotate(GRRotation::DOWN);
|
|
|
|
} else if (rotation_str == "ROTATION_LEFT") {
|
|
|
|
gr_rotate(GRRotation::LEFT);
|
2018-08-01 06:32:50 +02:00
|
|
|
} else { // "ROTATION_NONE" or unknown string
|
2018-08-01 07:01:03 +02:00
|
|
|
gr_rotate(GRRotation::NONE);
|
|
|
|
}
|
2017-09-14 00:56:16 +02:00
|
|
|
|
|
|
|
if (gr_draw->pixel_bytes != 4) {
|
|
|
|
printf("gr_init: Only 4-byte pixel formats supported\n");
|
|
|
|
}
|
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
return 0;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
void gr_exit() {
|
|
|
|
delete gr_backend;
|
2018-06-13 19:39:44 +02:00
|
|
|
gr_backend = nullptr;
|
|
|
|
|
|
|
|
delete gr_font;
|
|
|
|
gr_font = nullptr;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
int gr_fb_width() {
|
2018-08-01 07:01:03 +02:00
|
|
|
return (rotation == GRRotation::LEFT || rotation == GRRotation::RIGHT)
|
|
|
|
? gr_draw->height - 2 * overscan_offset_y
|
|
|
|
: gr_draw->width - 2 * overscan_offset_x;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
int gr_fb_height() {
|
2018-08-01 07:01:03 +02:00
|
|
|
return (rotation == GRRotation::LEFT || rotation == GRRotation::RIGHT)
|
|
|
|
? gr_draw->width - 2 * overscan_offset_x
|
|
|
|
: gr_draw->height - 2 * overscan_offset_y;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2011-08-30 20:59:20 +02:00
|
|
|
|
2017-02-07 21:51:00 +01:00
|
|
|
void gr_fb_blank(bool blank) {
|
|
|
|
gr_backend->Blank(blank);
|
2011-08-30 20:59:20 +02:00
|
|
|
}
|
2017-09-14 00:56:16 +02:00
|
|
|
|
2021-09-27 05:30:26 +02:00
|
|
|
void gr_fb_blank(bool blank, int index) {
|
|
|
|
gr_backend->Blank(blank, static_cast<MinuiBackend::DrmConnector>(index));
|
|
|
|
}
|
|
|
|
|
2017-09-14 00:56:16 +02:00
|
|
|
void gr_rotate(GRRotation rot) {
|
|
|
|
rotation = rot;
|
|
|
|
}
|
2022-07-19 10:34:43 +02:00
|
|
|
|
2022-11-07 12:39:20 +01:00
|
|
|
GRRotation gr_get_rotation() {
|
|
|
|
return rotation;
|
|
|
|
}
|
|
|
|
|
2022-07-19 10:34:43 +02:00
|
|
|
bool gr_has_multiple_connectors() {
|
|
|
|
return gr_backend->HasMultipleConnectors();
|
|
|
|
}
|