فهرست منبع

maxwell_3d: Use names that match envytools for VertexType.

bunnei 8 سال پیش
والد
کامیت
3754e0fdfd
1فایلهای تغییر یافته به همراه8 افزوده شده و 8 حذف شده
  1. 8 8
      src/video_core/engines/maxwell_3d.h

+ 8 - 8
src/video_core/engines/maxwell_3d.h

@@ -202,22 +202,22 @@ public:
                 return {};
                 return {};
             }
             }
 
 
-            std::string TypeToString() const {
+            std::string TypeString() const {
                 switch (type) {
                 switch (type) {
                 case Type::SignedNorm:
                 case Type::SignedNorm:
-                    return "SignedNorm";
+                    return "SNORM";
                 case Type::UnsignedNorm:
                 case Type::UnsignedNorm:
-                    return "UnsignedNorm";
+                    return "UNORM";
                 case Type::SignedInt:
                 case Type::SignedInt:
-                    return "SignedInt";
+                    return "SINT";
                 case Type::UnsignedInt:
                 case Type::UnsignedInt:
-                    return "UnsignedInt";
+                    return "UINT";
                 case Type::UnsignedScaled:
                 case Type::UnsignedScaled:
-                    return "UnsignedScaled";
+                    return "USCALED";
                 case Type::SignedScaled:
                 case Type::SignedScaled:
-                    return "SignedScaled";
+                    return "SSCALED";
                 case Type::Float:
                 case Type::Float:
-                    return "Float";
+                    return "FLOAT";
                 }
                 }
                 UNREACHABLE();
                 UNREACHABLE();
                 return {};
                 return {};