mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 20:26:58 +00:00
Added UNSIGNED_INT to ActiveUniformType enum. Fixes issue [#2077]: "Add UnsignedInt to ActiveUniformType".
This commit is contained in:
parent
cf97ff84a9
commit
6f815689e7
|
@ -7393,6 +7393,7 @@ VertexAttribParameter enum:
|
|||
|
||||
ActiveUniformType enum:
|
||||
SAMPLER_CUBE_SHADOW = 0x8DC5
|
||||
use DataType UNSIGNED_INT
|
||||
UNSIGNED_INT_VEC2 = 0x8DC6
|
||||
UNSIGNED_INT_VEC3 = 0x8DC7
|
||||
UNSIGNED_INT_VEC4 = 0x8DC8
|
||||
|
|
|
@ -77,6 +77,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
public enum ActiveUniformType : int
|
||||
{
|
||||
Int = ((int)0x1404),
|
||||
UnsignedInt = ((int)0x1405),
|
||||
Float = ((int)0x1406),
|
||||
FloatVec2 = ((int)0x8B50),
|
||||
FloatVec3 = ((int)0x8B51),
|
||||
|
|
Loading…
Reference in a new issue