Allow C# side manual construction of ResourceIds from integers

* This is primarily for ease-of-use from python scripting
This commit is contained in:
baldurk
2016-09-08 14:53:23 +02:00
parent df326cf992
commit 668e445778
+2 -2
View File
@@ -57,9 +57,9 @@ namespace renderdoc
return !(x == y);
}
public static ResourceId Null = new ResourceId(0, true);
public static ResourceId Null = new ResourceId(0);
private ResourceId(UInt64 id, bool explicitConstruct)
public ResourceId(UInt64 id)
{
m_ID = id;
}