removed pointless pointers in line and circle
This commit is contained in:
parent
56175ccb1b
commit
bbffbe1cb3
5 changed files with 18 additions and 18 deletions
|
|
@ -10,9 +10,9 @@ extern "C" {
|
|||
#include "arc/math/circle.h"
|
||||
#include <stdint.h>
|
||||
|
||||
void ARC_Circle_Render(ARC_Circle *circle, ARC_Renderer *renderer, ARC_Color *color);
|
||||
void ARC_Circle_Render(ARC_Circle circle, ARC_Renderer *renderer, ARC_Color color);
|
||||
|
||||
void ARC_Circle_RenderFill(ARC_Circle *circle, ARC_Renderer *renderer, ARC_Color *color);
|
||||
void ARC_Circle_RenderFill(ARC_Circle circle, ARC_Renderer *renderer, ARC_Color color);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue