Merge pull request #1211 from Triang3l/patch-1
[GPU] Add texture signedness enumeration
This commit is contained in:
commit
413a04eb1b
|
@ -63,6 +63,17 @@ enum class ClampMode : uint32_t {
|
|||
kMirrorClampToBorder = 7,
|
||||
};
|
||||
|
||||
// TEX_FORMAT_COMP, known as GPUSIGN on the Xbox 360.
|
||||
enum class TextureSign : uint32_t {
|
||||
kUnsigned = 0,
|
||||
// Two's complement texture data.
|
||||
kSigned = 1,
|
||||
// 2*color-1 - http://xboxforums.create.msdn.com/forums/t/107374.aspx
|
||||
kUnsignedBiased = 2,
|
||||
// Linearized when sampled.
|
||||
kGamma = 3,
|
||||
};
|
||||
|
||||
enum class TextureFilter : uint32_t {
|
||||
kPoint = 0,
|
||||
kLinear = 1,
|
||||
|
|
Loading…
Reference in New Issue