2018-05-01 06:15:48 +01:00
|
|
|
/*
|
2018-08-05 12:40:32 +01:00
|
|
|
* Copyright (c) 2018 naehrwert
|
2019-04-21 15:33:39 +01:00
|
|
|
* Copyright (C) 2018-2019 CTCaer
|
2018-08-07 15:53:58 +01:00
|
|
|
* Copyright (C) 2018 M4xw
|
2018-08-05 12:40:32 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
#ifndef _GFX_H_
|
|
|
|
#define _GFX_H_
|
|
|
|
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "../../common/common_gfx.h"
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-07-06 20:08:37 +01:00
|
|
|
#define EPRINTF(text) gfx_printf("%k"text"%k\n", 0xFFFF0000, 0xFFCCCCCC)
|
|
|
|
#define EPRINTFARGS(text, args...) gfx_printf("%k"text"%k\n", 0xFFFF0000, args, 0xFFCCCCCC)
|
2019-04-14 00:30:14 +01:00
|
|
|
#define WPRINTF(text) gfx_printf("%k"text"%k\n", 0xFFFFDD00, 0xFFCCCCCC)
|
|
|
|
#define WPRINTFARGS(text, args...) gfx_printf("%k"text"%k\n", 0xFFFFDD00, args, 0xFFCCCCCC)
|
2019-03-07 22:02:37 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
void gfx_init_ctxt(u32 *fb, u32 width, u32 height, u32 stride);
|
|
|
|
void gfx_clear_grey(u8 color);
|
|
|
|
void gfx_clear_partial_grey(u8 color, u32 pos_x, u32 height);
|
|
|
|
void gfx_clear_color(u32 color);
|
|
|
|
void gfx_con_init();
|
|
|
|
void gfx_con_setcol(u32 fgcol, int fillbg, u32 bgcol);
|
|
|
|
void gfx_con_getpos(u32 *x, u32 *y);
|
|
|
|
void gfx_con_setpos(u32 x, u32 y);
|
|
|
|
void gfx_putc(char c);
|
|
|
|
void gfx_puts(const char *s);
|
|
|
|
void gfx_printf(const char *fmt, ...);
|
|
|
|
void gfx_hexdump(u32 base, const u8 *buf, u32 len);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
void gfx_set_pixel(u32 x, u32 y, u32 color);
|
|
|
|
void gfx_line(int x0, int y0, int x1, int y1, u32 color);
|
2019-04-21 15:33:39 +01:00
|
|
|
void gfx_put_small_sep();
|
|
|
|
void gfx_put_big_sep();
|
2019-04-14 00:30:14 +01:00
|
|
|
void gfx_set_rect_grey(const u8 *buf, u32 size_x, u32 size_y, u32 pos_x, u32 pos_y);
|
|
|
|
void gfx_set_rect_rgb(const u8 *buf, u32 size_x, u32 size_y, u32 pos_x, u32 pos_y);
|
|
|
|
void gfx_set_rect_argb(const u32 *buf, u32 size_x, u32 size_y, u32 pos_x, u32 pos_y);
|
|
|
|
void gfx_render_bmp_argb(const u32 *buf, u32 size_x, u32 size_y, u32 pos_x, u32 pos_y);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-03-07 22:02:37 +00:00
|
|
|
// Global gfx console and context.
|
|
|
|
gfx_ctxt_t gfx_ctxt;
|
|
|
|
gfx_con_t gfx_con;
|
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
#endif
|