Fix double support in FormatElement & custom Buffer/CBuffer views

This commit is contained in:
baldurk
2014-09-17 18:51:00 +01:00
parent f2637a7bff
commit f4de6993bc
3 changed files with 19 additions and 12 deletions
+4
View File
@@ -1340,6 +1340,10 @@ namespace renderdocui.Windows
{
return Formatter.Format((float)o);
}
else if (o is double)
{
return Formatter.Format((double)o);
}
else if (o is uint)
{
uint u = (uint)o;