Nintendo 3DS >> C/C++ >> SDL v1.2
Rectangle
參考資訊:
1. libctru doc
2. 3ds-examples
說明:
API |
---|
int rectangleColor(SDL_Surface *dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) |
int rectangleRGBA(SDL_Surface *dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint8 r, Uint8 g, Uint8 b, Uint8 a) |
int boxColor(SDL_Surface *dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) |
int boxRGBA(SDL_Surface *dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint8 r, Uint8 g, Uint8 b, Uint8 a) |
main.c
#include <stdio.h> #include <stdlib.h> #include <SDL.h> #include <SDL_gfxPrimitives.h> int main(void) { SDL_Surface *screen = NULL; SDL_Init(SDL_INIT_VIDEO); screen = SDL_SetVideoMode(400, 240, 16, SDL_HWSURFACE); rectangleRGBA(screen, 10, 10, 100, 100, 0xff, 0x00, 0x00, 0xff); boxRGBA(screen, 150, 150, 100, 100, 0x00, 0xff, 0x00, 0xff); SDL_Flip(screen); SDL_Delay(3000); SDL_Quit(); return 0; }
完成