/* # ______ ____ ___ # | \/ ____| |___| # | | | \ | | #----------------------------------------------------------------------- # Copyright 2020, tyra - https://github.com/h4570/tyra # Licenced under Apache License 2.0 # Sandro Sobczyński */ #ifndef _TYRA_TEXTURE_WRAP_SETTINGS_ #define _TYRA_TEXTURE_WRAP_SETTINGS_ enum WrapSettings { Repeat = 0, Clamp = 1, RegionClamp = 2, RegionRepeat = 3 }; #endif