sdl3 migrate now compiling, need to go through all the files and clean them up
This commit is contained in:
parent
df4390ddba
commit
1b2e2cb7f1
26 changed files with 1139 additions and 0 deletions
13
packages/graphics/sdl3/obround.c
Normal file
13
packages/graphics/sdl3/obround.c
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "arc/graphics/obround.h"
|
||||
#include "renderer.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
//Modified from https://stackoverflow.com/questions/38334081/how-to-draw-circles-arcs-and-vector-graphics-in-sdl
|
||||
void ARC_Obround_Render(ARC_Obround *obround, ARC_Renderer *renderer, ARC_Color *color){
|
||||
//TODO: write this
|
||||
}
|
||||
|
||||
void ARC_FObround_Render(ARC_FObround *obround, ARC_Renderer *renderer, ARC_Color *color){
|
||||
ARC_Obround casted = ARC_FObround_CastToObround(obround);
|
||||
ARC_Obround_Render(&casted, renderer, color);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue