OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gr_surface
(Results
1 - 9
of
9
) sorted by null
/bootable/recovery/minui/
minui.h
36
typedef GRSurface*
gr_surface
;
typedef
51
void gr_texticon(int x, int y,
gr_surface
icon);
55
void gr_blit(
gr_surface
source, int sx, int sy, int w, int h, int dx, int dy);
56
unsigned int gr_get_width(
gr_surface
surface);
57
unsigned int gr_get_height(
gr_surface
surface);
95
int res_create_display_surface(const char* name,
gr_surface
* pSurface);
102
int* frames,
gr_surface
** pSurface);
105
int res_create_alpha_surface(const char* name,
gr_surface
* pSurface);
114
gr_surface
* pSurface);
118
void res_free_surface(
gr_surface
surface)
[
all
...]
graphics.h
28
// Initializes the backend and returns a
gr_surface
to draw into.
29
gr_surface
(*init)(struct minui_backend*);
34
gr_surface
(*flip)(struct minui_backend*);
resources.c
38
static
gr_surface
malloc_surface(size_t data_size) {
41
gr_surface
surface = (
gr_surface
) temp;
138
// Allocate and return a
gr_surface
sufficient for storing an image of
140
static
gr_surface
init_display_surface(png_uint_32 width, png_uint_32 height) {
141
gr_surface
surface;
199
int res_create_display_surface(const char* name,
gr_surface
* pSurface) {
200
gr_surface
surface = NULL;
234
int res_create_multi_display_surface(const char* name, int* frames,
gr_surface
** pSurface) {
235
gr_surface
* surface = NULL
[
all
...]
graphics_adf.c
49
static
gr_surface
adf_flip(struct minui_backend *backend);
137
static
gr_surface
adf_init(minui_backend *backend)
142
gr_surface
ret;
194
static
gr_surface
adf_flip(struct minui_backend *backend)
graphics_fbdev.c
35
static
gr_surface
fbdev_init(minui_backend*);
36
static
gr_surface
fbdev_flip(minui_backend*);
81
static
gr_surface
fbdev_init(minui_backend* backend) {
180
static
gr_surface
fbdev_flip(minui_backend* backend __unused) {
graphics.c
327
gr_surface
frame = images[x%frames];
/bootable/recovery/
screen_ui.h
70
gr_surface
backgroundIcon[5];
71
gr_surface
backgroundText[5];
72
gr_surface
*installation;
73
gr_surface
progressBarEmpty;
74
gr_surface
progressBarFill;
75
gr_surface
stageMarkerEmpty;
76
gr_surface
stageMarkerFill;
120
void LoadBitmap(const char* filename,
gr_surface
* surface);
121
void LoadBitmapArray(const char* filename, int* frames,
gr_surface
** surface);
122
void LoadLocalizedBitmap(const char* filename,
gr_surface
* surface)
[
all
...]
screen_ui.cpp
96
gr_surface
surface = backgroundIcon[icon];
100
gr_surface
text_surface = backgroundText[icon];
140
gr_surface
icon = installation[installingFrame];
327
void ScreenRecoveryUI::LoadBitmap(const char* filename,
gr_surface
* surface) {
334
void ScreenRecoveryUI::LoadBitmapArray(const char* filename, int* frames,
gr_surface
** surface) {
341
void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename,
gr_surface
* surface) {
/system/core/healthd/
healthd_mode_charger.cpp
91
gr_surface
surface;
118
gr_surface
surf_unknown;
276
static int draw_surface_centered(struct charger* /*charger*/,
gr_surface
surface)
690
gr_surface
* scale_frames;
Completed in 2377 milliseconds