thebookofshaders/glossary/void
2016-04-06 11:44:45 -04:00
..
README.md folder structure for glossary 2016-04-06 11:44:45 -04:00

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