Texture_set_repeat_ext - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Sets whether a texture bound to the given sampler stage is allowed to repeat when texture coordinates exceed their bounds.

Parameters

Parameter Data Type Description
stage int index of the sampler stage to change
repeat boolean whether or not textures should repeat

Return Values

void: This function does not return anything.

Example Call

// demonstrates turning on texture repetition
texture_set_repeat_ext(0,true);

NOTOC