mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
Fixed names in Rlgl (#182)
This commit is contained in:
@@ -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
Reference in New Issue
Block a user