Lines Matching refs:list
25 TDFX_FillRectangle(engine_token* et, uint32 color, fill_rect_params* list, in TDFX_FillRectangle() argument
39 int x = list->left; in TDFX_FillRectangle()
40 int y = list->top; in TDFX_FillRectangle()
41 int w = list->right - x + 1; in TDFX_FillRectangle()
42 int h = list->bottom - y + 1; in TDFX_FillRectangle()
49 list++; in TDFX_FillRectangle()
55 TDFX_FillSpan(engine_token* et, uint32 color, uint16* list, uint32 count) in TDFX_FillSpan() argument
68 int y = *list++; in TDFX_FillSpan()
69 int x = *list++; in TDFX_FillSpan()
70 int w = *list++ - x + 1; in TDFX_FillSpan()
84 TDFX_InvertRectangle(engine_token* et, fill_rect_params* list, uint32 count) in TDFX_InvertRectangle() argument
95 int x = list->left; in TDFX_InvertRectangle()
96 int y = list->top; in TDFX_InvertRectangle()
97 int w = list->right - x + 1; in TDFX_InvertRectangle()
98 int h = list->bottom - y + 1; in TDFX_InvertRectangle()
105 list++; in TDFX_InvertRectangle()
111 TDFX_ScreenToScreenBlit(engine_token* et, blit_params* list, uint32 count) in TDFX_ScreenToScreenBlit() argument
123 int src_x = list->src_left; in TDFX_ScreenToScreenBlit()
124 int src_y = list->src_top; in TDFX_ScreenToScreenBlit()
125 int dest_x = list->dest_left; in TDFX_ScreenToScreenBlit()
126 int dest_y = list->dest_top; in TDFX_ScreenToScreenBlit()
127 int width = list->width; in TDFX_ScreenToScreenBlit()
128 int height = list->height; in TDFX_ScreenToScreenBlit()
150 list++; in TDFX_ScreenToScreenBlit()