-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f36e79b
commit 5f810e6
Showing
2 changed files
with
30 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
#include <glisy/glisy.h> | ||
|
||
/** | ||
* Initializes glisy. | ||
* Returns 1 for success, 0 for failure. | ||
* Initialize Glisy. | ||
*/ | ||
|
||
int | ||
glisy_init() { | ||
GLboolean | ||
glisy_init(void) { | ||
// @TODO: implement glisy_init() | ||
return GL_TRUE; | ||
} | ||
|
||
/** | ||
* Terminate glisy. | ||
* Terminate Glisy. | ||
*/ | ||
|
||
GLboolean | ||
glisy_terminate(void) { | ||
// @TODO: implement glisy_terminate() | ||
return GL_TRUE; | ||
} | ||
|
||
/** | ||
* Renders a Glisy Scene with a Glisy Camera. | ||
*/ | ||
|
||
void | ||
glisy_terminate(void) {} | ||
glisy_render(const glisy_renderer renderer, | ||
const glisy_scene scene, | ||
const glisy_perspective_camera camera) { | ||
// @TODO: implement glisy_render() | ||
} |