spp8x8.c

来自「十七种模拟器源代码 非常有用的作课程设计不可缺少的」· C语言 代码 · 共 62 行

C
62
字号
/******************************************************************************//*                                                                            *//*                 RAINE 8x8 TILE DRAWING (4BPP PACKED DATA)                  *//*                                                                            *//******************************************************************************/#include "deftypes.h"#include "raine.h"/*Transparent Packed Mapped*/// 8x8 4bpp Packed Mapped Spritesvoid init_spp8x8asm(void){}// 8x8 4bpp Packed Mapped Transparent Sprites// [10325476]void Draw8x8_Trans_Packed_Mapped(UINT8 *SPR, int x, int y, UINT8 *cmap){}void Draw8x8_Trans_Packed_Mapped_FlipX(UINT8 *SPR, int x, int y, UINT8 *cmap){}void Draw8x8_Trans_Packed_Mapped_FlipY(UINT8 *SPR, int x, int y, UINT8 *cmap){}void Draw8x8_Trans_Packed_Mapped_FlipXY(UINT8 *SPR, int x, int y, UINT8 *cmap){}// 8x8 4bpp Packed Mapped Transparent Sprites (word swapped)// [54761032]void Draw8x8_Trans_Packed_Mapped_SwapWord(UINT8 *SPR, int x, int y, UINT8 *cmap){}void Draw8x8_Trans_Packed_Mapped_SwapWord_FlipX(UINT8 *SPR, int x, int y, UINT8 *cmap){}void Draw8x8_Trans_Packed_Mapped_SwapWord_FlipY(UINT8 *SPR, int x, int y, UINT8 *cmap){}void Draw8x8_Trans_Packed_Mapped_SwapWord_FlipXY(UINT8 *SPR, int x, int y, UINT8 *cmap){}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?