mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
10 lines
114 B
Java
10 lines
114 B
Java
package ninja.bytecode.iris.util;
|
|
|
|
public enum InterpolationMode
|
|
{
|
|
NONE,
|
|
BILINEAR,
|
|
BICUBIC,
|
|
HERMITE_BICUBIC
|
|
}
|