VSF Documented
vsf_tgui_sv_port.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright(C)2009-2022 by VSF Team *
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 ****************************************************************************/
17
18#ifndef __VSF_TINY_GUI_V_PORT_H__
19#define __VSF_TINY_GUI_V_PORT_H__
20
21/*============================ INCLUDES ======================================*/
22
23#include "../../vsf_tgui_cfg.h"
24
25#if VSF_USE_TINY_GUI == ENABLED \
26 && VSF_TGUI_CFG_RENDERING_TEMPLATE_SEL == VSF_TGUI_V_TEMPLATE_SIMPLE_VIEW
27
28#include "./vsf_tgui_sv_color.h"
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34/*============================ MACROS ========================================*/
35
36#ifndef VSF_TGUI_HOR_MAX
37# define VSF_TGUI_HOR_MAX 800
38#endif
39
40#ifndef VSF_TGUI_VER_MAX
41# define VSF_TGUI_VER_MAX 600
42#endif
43
44/*============================ MACROFIED FUNCTIONS ===========================*/
45/*============================ TYPES =========================================*/
46/*============================ GLOBAL VARIABLES ==============================*/
47/*============================ PROTOTYPES ====================================*/
48
49extern
50void vsf_tgui_sv_port_draw_rect(vsf_tgui_t* gui_ptr,
51 vsf_tgui_location_t* location_ptr,
52 vsf_tgui_size_t* size_ptr,
53 vsf_tgui_v_color_t tColor);
54
55extern
56void vsf_tgui_sv_port_draw_char(vsf_tgui_t* gui_ptr,
57 vsf_tgui_location_t* location_ptr,
58 vsf_tgui_location_t* font_location_ptr,
59 vsf_tgui_size_t* size_ptr,
60 const uint8_t chFontIndex,
61 uint32_t char_u32,
62 vsf_tgui_v_color_t tCharColor);
63
64extern
65void vsf_tgui_sv_port_draw_root_tile(vsf_tgui_t* gui_ptr,
66 vsf_tgui_location_t* location_ptr,
67 vsf_tgui_location_t* tile_ptrLocation,
68 vsf_tgui_size_t* size_ptr,
69 const vsf_tgui_tile_t* tile_ptr,
70 uint_fast8_t trans_rate,
72 vsf_tgui_v_color_t bg_color);
73
74#ifdef __cplusplus
75}
76#endif
77
78#endif
79#endif
80/* EOF */
unsigned char uint_fast8_t
Definition stdint.h:23
unsigned uint32_t
Definition stdint.h:9
unsigned char uint8_t
Definition stdint.h:5
Definition vsf_tgui_common.h:271
Definition vsf_tgui_common.h:276
Definition vsf_tgui_sv_color.h:93
Definition vsf_tgui_common.h:444
void vsf_tgui_sv_port_draw_rect(vsf_tgui_t *gui_ptr, vsf_tgui_location_t *location_ptr, vsf_tgui_size_t *size_ptr, vsf_tgui_v_color_t tColor)
Definition vsf_tgui_sv_port.c:135
void vsf_tgui_sv_port_draw_root_tile(vsf_tgui_t *gui_ptr, vsf_tgui_location_t *location_ptr, vsf_tgui_location_t *tile_ptrLocation, vsf_tgui_size_t *size_ptr, const vsf_tgui_tile_t *tile_ptr, uint_fast8_t trans_rate, vsf_tgui_v_color_t color, vsf_tgui_v_color_t bg_color)
Definition vsf_tgui_sv_port.c:200
void vsf_tgui_sv_port_draw_char(vsf_tgui_t *gui_ptr, vsf_tgui_location_t *location_ptr, vsf_tgui_location_t *font_location_ptr, vsf_tgui_size_t *size_ptr, const uint8_t chFontIndex, uint32_t char_u32, vsf_tgui_v_color_t tCharColor)
Definition vsf_tgui_sv_port.c:300
uint32_t color
Definition vsf_sdl2_pixelformat.c:31