Lines Matching defs:DEPTH

43 #if DEPTH == 8
46 #elif DEPTH == 15 || DEPTH == 16
49 #elif DEPTH == 32
56 #if DEPTH != 15
58 static inline void RT_CONCAT(vga_draw_glyph_line_, DEPTH)(uint8_t *d,
94 static void RT_CONCAT(vga_draw_glyph8_, DEPTH)(uint8_t *d, int linesize,
104 RT_CONCAT(vga_draw_glyph_line_, DEPTH)(d, font_data, xorcol, bgcol, dscan, linesize);
110 static void RT_CONCAT(vga_draw_glyph16_, DEPTH)(uint8_t *d, int linesize,
120 RT_CONCAT(vga_draw_glyph_line_, DEPTH)(d,
123 RT_CONCAT(vga_draw_glyph_line_, DEPTH)(d + 8 * BPP,
131 static void RT_CONCAT(vga_draw_glyph9_, DEPTH)(uint8_t *d, int linesize,
183 static void RT_CONCAT(vga_draw_line2_, DEPTH)(VGAState *s1, uint8_t *d,
227 static void RT_CONCAT(vga_draw_line2d2_, DEPTH)(VGAState *s1, uint8_t *d,
262 static void RT_CONCAT(vga_draw_line4_, DEPTH)(VGAState *s1, uint8_t *d,
294 static void RT_CONCAT(vga_draw_line4d2_, DEPTH)(VGAState *s1, uint8_t *d,
328 static void RT_CONCAT(vga_draw_line8d2_, DEPTH)(VGAState *s1, uint8_t *d,
351 static void RT_CONCAT(vga_draw_line8_, DEPTH)(VGAState *s1, uint8_t *d,
373 #endif /* DEPTH != 15 */
381 static void RT_CONCAT(vga_draw_line15_, DEPTH)(VGAState *s1, uint8_t *d,
384 #if DEPTH == 15 && defined(WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
396 ((PIXEL_TYPE *)d)[0] = RT_CONCAT(rgb_to_pixel, DEPTH)(r, g, b);
407 static void RT_CONCAT(vga_draw_line16_, DEPTH)(VGAState *s1, uint8_t *d,
410 #if DEPTH == 16 && defined(WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
422 ((PIXEL_TYPE *)d)[0] = RT_CONCAT(rgb_to_pixel, DEPTH)(r, g, b);
433 static void RT_CONCAT(vga_draw_line24_, DEPTH)(VGAState *s1, uint8_t *d,
451 ((PIXEL_TYPE *)d)[0] = RT_CONCAT(rgb_to_pixel, DEPTH)(r, g, b);
460 static void RT_CONCAT(vga_draw_line32_, DEPTH)(VGAState *s1, uint8_t *d,
463 #if DEPTH == 32 && defined(WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
480 ((PIXEL_TYPE *)d)[0] = RT_CONCAT(rgb_to_pixel, DEPTH)(r, g, b);
488 #if DEPTH != 15
493 void RT_CONCAT(vga_draw_cursor_line_, DEPTH)(uint8_t *d1,
510 #if DEPTH == 8
524 #elif DEPTH == 16
538 #elif DEPTH == 32
562 #undef DEPTH