23 lines
492 B
C++
23 lines
492 B
C++
/*
|
|
# ______ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2020, tyra - https://github.com/h4570/tyra
|
|
# Licenced under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#ifndef _TYRA_TEXTURE_WRAP_SETTINGS_
|
|
#define _TYRA_TEXTURE_WRAP_SETTINGS_
|
|
|
|
enum WrapSettings
|
|
{
|
|
Repeat = 0,
|
|
Clamp = 1,
|
|
RegionClamp = 2,
|
|
RegionRepeat = 3
|
|
};
|
|
|
|
#endif
|