Fixed names in Rlgl (#182)
This commit is contained in:
parent
ba5cc35c0b
commit
d9202ba262
2 changed files with 361 additions and 362 deletions
|
|
@ -36,7 +36,7 @@ namespace Raylib_cs.Tests
|
||||||
{
|
{
|
||||||
public static bool IsBlittable<T>()
|
public static bool IsBlittable<T>()
|
||||||
{
|
{
|
||||||
return IsBlittableCache<T>.Value;
|
return IsBlittableCache<T>.VALUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool IsBlittable(this Type type)
|
public static bool IsBlittable(this Type type)
|
||||||
|
|
@ -64,7 +64,7 @@ namespace Raylib_cs.Tests
|
||||||
|
|
||||||
private static class IsBlittableCache<T>
|
private static class IsBlittableCache<T>
|
||||||
{
|
{
|
||||||
public static readonly bool Value = IsBlittable(typeof(T));
|
public static readonly bool VALUE = IsBlittable(typeof(T));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue