掌機 - Nintendo 3DS - C/C++ - SDL v1.2 - GFX - Trigon



參考資訊:
https://libctru.devkitpro.org/index.html
https://github.com/devkitPro/3ds-examples

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);
    trigonRGBA(screen, 100, 10, 200, 60, 100, 60, 0xff, 0x00, 0x00, 0xff);
    aatrigonRGBA(screen, 100, 80, 200, 130, 100, 130, 0x00, 0xff, 0x00, 0xff);
    filledTrigonRGBA(screen, 100, 150, 200, 200, 100, 200, 0xff, 0xff, 0x00, 0xff);
    SDL_Flip(screen);
    SDL_Delay(3000);

    SDL_Quit();
    return 0;
}

完成