Home
last modified time | relevance | path

Searched refs:RATIO_ONE (Results 1 – 1 of 1) sorted by relevance

/GUIX-v6.4.1/test/example_internal/partial_frame_buffer_16bpp/
Dresize_screen.c12 #define RATIO_ONE 100 macro
14 INT x_ratio = RATIO_ONE;
15 INT y_ratio = RATIO_ONE;
24 prompt->gx_numeric_prompt_buffer[index++] = '0' + (value / RATIO_ONE); in resize_ratio_format()
26 prompt->gx_numeric_prompt_buffer[index++] = '0' + (value % RATIO_ONE) / 10; in resize_ratio_format()
27 prompt->gx_numeric_prompt_buffer[index++] = '0' + (value % RATIO_ONE) % 10; in resize_ratio_format()
85 width = (pixelmap->gx_pixelmap_width * x_ratio / RATIO_ONE); in resize_window_draw()
86 height = (pixelmap->gx_pixelmap_height * y_ratio / RATIO_ONE); in resize_window_draw()
88 if (x_ratio == RATIO_ONE && y_ratio == RATIO_ONE) in resize_window_draw()