added MeshTexture class
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
# ______ ____ ___
|
||||
# | \/ ____| |___|
|
||||
# | | | \ | |
|
||||
#-----------------------------------------------------------------------
|
||||
# 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
|
||||
Reference in New Issue
Block a user