thebookofshaders/glossary/void/README.md
2017-08-23 11:34:44 +02:00

354 B

Void

Declaration

void main(void);
int aFunction(void);
void bFunction(float);

Description

void is used when a function have no parameters or when a function does not return a value.

See Also

void, bool, int, float