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.
|
|
|
|
*/
|
|
|
|
|
2011-08-30 20:59:20 +02:00
|
|
|
#include <stdbool.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
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <linux/fb.h>
|
|
|
|
#include <linux/kd.h>
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
#include <time.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2013-03-07 00:01:11 +01:00
|
|
|
#include "font_10x18.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
#include "minui.h"
|
2014-03-11 21:22:04 +01:00
|
|
|
#include "graphics.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
static GRFont* gr_font = NULL;
|
2014-03-11 21:22:04 +01:00
|
|
|
static minui_backend* gr_backend = NULL;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2012-12-19 01:31:27 +01:00
|
|
|
static int overscan_percent = OVERSCAN_PERCENT;
|
|
|
|
static int overscan_offset_x = 0;
|
|
|
|
static int overscan_offset_y = 0;
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
static unsigned char gr_current_r = 255;
|
|
|
|
static unsigned char gr_current_g = 255;
|
|
|
|
static unsigned char gr_current_b = 255;
|
|
|
|
static unsigned char gr_current_a = 255;
|
|
|
|
|
2014-03-11 21:22:04 +01:00
|
|
|
static GRSurface* gr_draw = NULL;
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
static bool outside(int x, int y)
|
|
|
|
{
|
|
|
|
return x < 0 || x >= gr_draw->width || y < 0 || y >= gr_draw->height;
|
|
|
|
}
|
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
const GRFont* gr_sys_font()
|
2009-03-04 04:28:42 +01:00
|
|
|
{
|
2016-08-12 00:57:03 +02:00
|
|
|
return gr_font;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
int gr_measure(const GRFont* font, const char *s)
|
2011-08-30 20:58:24 +02:00
|
|
|
{
|
2016-08-12 00:57:03 +02:00
|
|
|
return font->char_width * strlen(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gr_font_size(const GRFont* font, int *x, int *y)
|
|
|
|
{
|
|
|
|
*x = font->char_width;
|
|
|
|
*y = font->char_height;
|
2011-08-30 20:58:24 +02:00
|
|
|
}
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
static void text_blend(unsigned char* src_p, int src_row_bytes,
|
|
|
|
unsigned char* dst_p, int dst_row_bytes,
|
|
|
|
int width, int height)
|
|
|
|
{
|
2015-03-24 23:21:48 +01:00
|
|
|
for (int j = 0; j < height; ++j) {
|
2014-03-07 01:16:05 +01:00
|
|
|
unsigned char* sx = src_p;
|
|
|
|
unsigned char* px = dst_p;
|
2015-03-24 23:21:48 +01:00
|
|
|
for (int i = 0; i < width; ++i) {
|
2014-03-07 01:16:05 +01:00
|
|
|
unsigned char a = *sx++;
|
|
|
|
if (gr_current_a < 255) a = ((int)a * gr_current_a) / 255;
|
|
|
|
if (a == 255) {
|
|
|
|
*px++ = gr_current_r;
|
|
|
|
*px++ = gr_current_g;
|
|
|
|
*px++ = gr_current_b;
|
|
|
|
px++;
|
|
|
|
} else if (a > 0) {
|
|
|
|
*px = (*px * (255-a) + gr_current_r * a) / 255;
|
|
|
|
++px;
|
|
|
|
*px = (*px * (255-a) + gr_current_g * a) / 255;
|
|
|
|
++px;
|
|
|
|
*px = (*px * (255-a) + gr_current_b * a) / 255;
|
|
|
|
++px;
|
|
|
|
++px;
|
|
|
|
} else {
|
|
|
|
px += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
src_p += src_row_bytes;
|
|
|
|
dst_p += dst_row_bytes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
void gr_text(const GRFont* font, int x, int y, const char *s, bool bold)
|
2009-03-04 04:28:42 +01:00
|
|
|
{
|
2015-03-24 23:21:48 +01:00
|
|
|
if (!font->texture || gr_current_a == 0) return;
|
2013-03-05 00:49:02 +01:00
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
bold = bold && (font->texture->height != font->char_height);
|
2013-03-07 00:01:11 +01:00
|
|
|
|
2012-12-19 01:31:27 +01:00
|
|
|
x += overscan_offset_x;
|
|
|
|
y += overscan_offset_y;
|
|
|
|
|
2015-03-24 23:21:48 +01:00
|
|
|
unsigned char ch;
|
|
|
|
while ((ch = *s++)) {
|
2016-08-12 00:57:03 +02:00
|
|
|
if (outside(x, y) || outside(x+font->char_width-1, y+font->char_height-1)) break;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2015-03-24 23:21:48 +01:00
|
|
|
if (ch < ' ' || ch > '~') {
|
|
|
|
ch = '?';
|
|
|
|
}
|
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
unsigned char* src_p = font->texture->data + ((ch - ' ') * font->char_width) +
|
|
|
|
(bold ? font->char_height * font->texture->row_bytes : 0);
|
2015-03-24 23:21:48 +01:00
|
|
|
unsigned char* dst_p = gr_draw->data + y*gr_draw->row_bytes + x*gr_draw->pixel_bytes;
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2015-03-24 23:21:48 +01:00
|
|
|
text_blend(src_p, font->texture->row_bytes,
|
|
|
|
dst_p, gr_draw->row_bytes,
|
2016-08-12 00:57:03 +02:00
|
|
|
font->char_width, font->char_height);
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
x += font->char_width;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
void gr_texticon(int x, int y, GRSurface* icon) {
|
|
|
|
if (icon == NULL) return;
|
|
|
|
|
|
|
|
if (icon->pixel_bytes != 1) {
|
|
|
|
printf("gr_texticon: source has wrong format\n");
|
2012-09-04 23:28:25 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2012-12-19 01:31:27 +01:00
|
|
|
x += overscan_offset_x;
|
|
|
|
y += overscan_offset_y;
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
if (outside(x, y) || outside(x+icon->width-1, y+icon->height-1)) return;
|
|
|
|
|
|
|
|
unsigned char* src_p = icon->data;
|
|
|
|
unsigned char* dst_p = gr_draw->data + y*gr_draw->row_bytes + x*gr_draw->pixel_bytes;
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
text_blend(src_p, icon->row_bytes,
|
|
|
|
dst_p, gr_draw->row_bytes,
|
|
|
|
icon->width, icon->height);
|
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
|
|
|
|
{
|
2015-02-05 14:25:56 +01:00
|
|
|
#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
|
|
|
|
gr_current_r = b;
|
|
|
|
gr_current_g = g;
|
|
|
|
gr_current_b = r;
|
|
|
|
gr_current_a = a;
|
|
|
|
#else
|
2014-03-07 01:16:05 +01:00
|
|
|
gr_current_r = r;
|
|
|
|
gr_current_g = g;
|
|
|
|
gr_current_b = b;
|
|
|
|
gr_current_a = a;
|
2015-02-05 14:25:56 +01:00
|
|
|
#endif
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void gr_clear()
|
|
|
|
{
|
2015-03-24 23:21:48 +01:00
|
|
|
if (gr_current_r == gr_current_g && gr_current_r == gr_current_b) {
|
2014-03-07 01:16:05 +01:00
|
|
|
memset(gr_draw->data, gr_current_r, gr_draw->height * gr_draw->row_bytes);
|
|
|
|
} else {
|
|
|
|
unsigned char* px = gr_draw->data;
|
2015-03-24 23:21:48 +01:00
|
|
|
for (int y = 0; y < gr_draw->height; ++y) {
|
|
|
|
for (int x = 0; x < gr_draw->width; ++x) {
|
2014-03-07 01:16:05 +01:00
|
|
|
*px++ = gr_current_r;
|
|
|
|
*px++ = gr_current_g;
|
|
|
|
*px++ = gr_current_b;
|
|
|
|
px++;
|
|
|
|
}
|
|
|
|
px += gr_draw->row_bytes - (gr_draw->width * gr_draw->pixel_bytes);
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 01:31:27 +01:00
|
|
|
void gr_fill(int x1, int y1, int x2, int y2)
|
2009-03-04 04:28:42 +01:00
|
|
|
{
|
2012-12-19 01:31:27 +01:00
|
|
|
x1 += overscan_offset_x;
|
|
|
|
y1 += overscan_offset_y;
|
|
|
|
|
|
|
|
x2 += overscan_offset_x;
|
|
|
|
y2 += overscan_offset_y;
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
if (outside(x1, y1) || outside(x2-1, y2-1)) return;
|
|
|
|
|
|
|
|
unsigned char* p = gr_draw->data + y1 * gr_draw->row_bytes + x1 * gr_draw->pixel_bytes;
|
|
|
|
if (gr_current_a == 255) {
|
|
|
|
int x, y;
|
|
|
|
for (y = y1; y < y2; ++y) {
|
|
|
|
unsigned char* px = p;
|
|
|
|
for (x = x1; x < x2; ++x) {
|
|
|
|
*px++ = gr_current_r;
|
|
|
|
*px++ = gr_current_g;
|
|
|
|
*px++ = gr_current_b;
|
|
|
|
px++;
|
|
|
|
}
|
|
|
|
p += gr_draw->row_bytes;
|
|
|
|
}
|
|
|
|
} else if (gr_current_a > 0) {
|
|
|
|
int x, y;
|
|
|
|
for (y = y1; y < y2; ++y) {
|
|
|
|
unsigned char* px = p;
|
|
|
|
for (x = x1; x < x2; ++x) {
|
|
|
|
*px = (*px * (255-gr_current_a) + gr_current_r * gr_current_a) / 255;
|
|
|
|
++px;
|
|
|
|
*px = (*px * (255-gr_current_a) + gr_current_g * gr_current_a) / 255;
|
|
|
|
++px;
|
|
|
|
*px = (*px * (255-gr_current_a) + gr_current_b * gr_current_a) / 255;
|
|
|
|
++px;
|
|
|
|
++px;
|
|
|
|
}
|
|
|
|
p += gr_draw->row_bytes;
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) {
|
|
|
|
if (source == NULL) return;
|
|
|
|
|
|
|
|
if (gr_draw->pixel_bytes != source->pixel_bytes) {
|
|
|
|
printf("gr_blit: source has wrong format\n");
|
2009-03-04 04:28:42 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-19 01:31:27 +01:00
|
|
|
dx += overscan_offset_x;
|
|
|
|
dy += overscan_offset_y;
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
if (outside(dx, dy) || outside(dx+w-1, dy+h-1)) return;
|
|
|
|
|
|
|
|
unsigned char* src_p = source->data + sy*source->row_bytes + sx*source->pixel_bytes;
|
|
|
|
unsigned char* dst_p = gr_draw->data + dy*gr_draw->row_bytes + dx*gr_draw->pixel_bytes;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < h; ++i) {
|
|
|
|
memcpy(dst_p, src_p, w * source->pixel_bytes);
|
|
|
|
src_p += source->row_bytes;
|
|
|
|
dst_p += gr_draw->row_bytes;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
unsigned int gr_get_width(GRSurface* surface) {
|
2009-03-04 04:28:42 +01:00
|
|
|
if (surface == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
return surface->width;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
unsigned int gr_get_height(GRSurface* surface) {
|
2009-03-04 04:28:42 +01:00
|
|
|
if (surface == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
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) {
|
|
|
|
GRFont* font = reinterpret_cast<GRFont*>(calloc(1, sizeof(*gr_font)));
|
|
|
|
if (font == nullptr) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int res = res_create_alpha_surface(name, &(font->texture));
|
2016-08-12 00:57:03 +02:00
|
|
|
if (res < 0) {
|
2016-09-09 16:14:08 +02:00
|
|
|
free(font);
|
2016-08-12 00:57:03 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
2016-09-09 16:14:08 +02:00
|
|
|
font->char_width = font->texture->width / 96;
|
|
|
|
font->char_height = font->texture->height / 2;
|
|
|
|
|
|
|
|
*dest = font;
|
2016-08-12 00:57:03 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
static void gr_init_font(void)
|
|
|
|
{
|
2016-09-09 16:14:08 +02:00
|
|
|
int res = gr_init_font("font", &gr_font);
|
2013-03-07 00:01:11 +01:00
|
|
|
if (res == 0) {
|
2016-08-12 00:57:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-03-07 00:01:11 +01:00
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
printf("failed to read font: res=%d\n", res);
|
|
|
|
|
2016-09-09 16:14:08 +02:00
|
|
|
|
2016-08-12 00:57:03 +02:00
|
|
|
// fall back to the compiled-in font.
|
2016-09-09 16:14:08 +02:00
|
|
|
gr_font = reinterpret_cast<GRFont*>(calloc(1, sizeof(*gr_font)));
|
2016-08-12 00:57:03 +02:00
|
|
|
gr_font->texture = reinterpret_cast<GRSurface*>(malloc(sizeof(*gr_font->texture)));
|
|
|
|
gr_font->texture->width = font.width;
|
|
|
|
gr_font->texture->height = font.height;
|
|
|
|
gr_font->texture->row_bytes = font.width;
|
|
|
|
gr_font->texture->pixel_bytes = 1;
|
|
|
|
|
|
|
|
unsigned char* bits = reinterpret_cast<unsigned char*>(malloc(font.width * font.height));
|
|
|
|
gr_font->texture->data = reinterpret_cast<unsigned char*>(bits);
|
|
|
|
|
|
|
|
unsigned char data;
|
|
|
|
unsigned char* in = font.rundata;
|
|
|
|
while((data = *in++)) {
|
|
|
|
memset(bits, (data & 0x80) ? 255 : 0, data & 0x7f);
|
|
|
|
bits += (data & 0x7f);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2016-08-12 00:57:03 +02:00
|
|
|
|
|
|
|
gr_font->char_width = font.char_width;
|
|
|
|
gr_font->char_height = font.char_height;
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
#if 0
|
|
|
|
// Exercises many of the gr_*() functions; useful for testing.
|
|
|
|
static void gr_test() {
|
|
|
|
GRSurface** images;
|
|
|
|
int frames;
|
|
|
|
int result = res_create_multi_surface("icon_installing", &frames, &images);
|
|
|
|
if (result < 0) {
|
|
|
|
printf("create surface %d\n", result);
|
|
|
|
gr_exit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
time_t start = time(NULL);
|
|
|
|
int x;
|
|
|
|
for (x = 0; x <= 1200; ++x) {
|
|
|
|
if (x < 400) {
|
|
|
|
gr_color(0, 0, 0, 255);
|
|
|
|
} else {
|
|
|
|
gr_color(0, (x-400)%128, 0, 255);
|
|
|
|
}
|
|
|
|
gr_clear();
|
|
|
|
|
|
|
|
gr_color(255, 0, 0, 255);
|
2015-04-15 19:58:56 +02:00
|
|
|
GRSurface* frame = images[x%frames];
|
2014-03-07 01:16:05 +01:00
|
|
|
gr_blit(frame, 0, 0, frame->width, frame->height, x, 0);
|
|
|
|
|
|
|
|
gr_color(255, 0, 0, 128);
|
|
|
|
gr_fill(400, 150, 600, 350);
|
|
|
|
|
|
|
|
gr_color(255, 255, 255, 255);
|
|
|
|
gr_text(500, 225, "hello, world!", 0);
|
|
|
|
gr_color(255, 255, 0, 128);
|
|
|
|
gr_text(300+x, 275, "pack my box with five dozen liquor jugs", 1);
|
|
|
|
|
|
|
|
gr_color(0, 0, 255, 128);
|
|
|
|
gr_fill(gr_draw->width - 200 - x, 300, gr_draw->width - x, 500);
|
|
|
|
|
2014-03-11 21:22:04 +01:00
|
|
|
gr_draw = gr_backend->flip(gr_backend);
|
2014-03-07 01:16:05 +01:00
|
|
|
}
|
|
|
|
printf("getting end time\n");
|
|
|
|
time_t end = time(NULL);
|
|
|
|
printf("got end time\n");
|
|
|
|
printf("start %ld end %ld\n", (long)start, (long)end);
|
|
|
|
if (end > start) {
|
|
|
|
printf("%.2f fps\n", ((double)x) / (end-start));
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2014-03-07 01:16:05 +01:00
|
|
|
#endif
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-03-11 21:22:04 +01:00
|
|
|
void gr_flip() {
|
|
|
|
gr_draw = gr_backend->flip(gr_backend);
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
int gr_init(void)
|
|
|
|
{
|
|
|
|
gr_init_font();
|
2014-03-07 01:16:05 +01:00
|
|
|
|
2014-04-25 19:39:50 +02:00
|
|
|
gr_backend = open_adf();
|
|
|
|
if (gr_backend) {
|
|
|
|
gr_draw = gr_backend->init(gr_backend);
|
|
|
|
if (!gr_draw) {
|
|
|
|
gr_backend->exit(gr_backend);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-30 05:05:48 +02:00
|
|
|
if (!gr_draw) {
|
|
|
|
gr_backend = open_drm();
|
|
|
|
gr_draw = gr_backend->init(gr_backend);
|
|
|
|
}
|
|
|
|
|
2014-04-25 19:39:50 +02:00
|
|
|
if (!gr_draw) {
|
|
|
|
gr_backend = open_fbdev();
|
|
|
|
gr_draw = gr_backend->init(gr_backend);
|
|
|
|
if (gr_draw == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 21:22:04 +01:00
|
|
|
overscan_offset_x = gr_draw->width * overscan_percent / 100;
|
|
|
|
overscan_offset_y = gr_draw->height * overscan_percent / 100;
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-03-07 01:16:05 +01:00
|
|
|
gr_flip();
|
|
|
|
gr_flip();
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gr_exit(void)
|
|
|
|
{
|
2014-03-11 21:22:04 +01:00
|
|
|
gr_backend->exit(gr_backend);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int gr_fb_width(void)
|
|
|
|
{
|
2014-03-07 01:16:05 +01:00
|
|
|
return gr_draw->width - 2*overscan_offset_x;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int gr_fb_height(void)
|
|
|
|
{
|
2014-03-07 01:16:05 +01:00
|
|
|
return gr_draw->height - 2*overscan_offset_y;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2011-08-30 20:59:20 +02:00
|
|
|
|
|
|
|
void gr_fb_blank(bool blank)
|
|
|
|
{
|
2014-03-11 21:22:04 +01:00
|
|
|
gr_backend->blank(gr_backend, blank);
|
2011-08-30 20:59:20 +02:00
|
|
|
}
|