-
Notifications
You must be signed in to change notification settings - Fork 0
Texture_set_filter_ext
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Sets the filtering mode for the texture bound to the first sampler stage, the better the quality the slower to render.
| Parameter | Data Type | Description |
|---|---|---|
| stage | int | index of the sampler stage to change |
| filter | integer | texture constant (tx_none, tx_nearest, tx_bilinear, tx_trilinear) |
void: This function does not return anything.
// demonstrates setting trilinear filtering
texture_set_filter_ext(0, tx_trilinear);
NOTOC
This is number 1