Glsl_uniformui - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Overloads
Description
Modifies the uniform unsigned integer variable at the given location.
Parameters
Parameter | Data Type | Description |
---|---|---|
location | integer | location of the uniform unsigned integer variable |
v0 - v3 | float | value to give the uniform unsigned integer variable |
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting uniform unsigned integer variables
glsl_uniformf(animframesloc, 5, 10);
glsl_uniformf(lightcountloc, 32);
NOTOC