Revert "RSX: fix unknown vertex base type" (#2122)

This commit is contained in:
raven02 2016-09-04 18:29:21 +08:00 committed by GitHub
parent 691d87978b
commit ad39615141
2 changed files with 0 additions and 2 deletions

View File

@ -5,7 +5,6 @@ rsx::vertex_base_type rsx::to_vertex_base_type(u8 in)
{ {
switch (in) switch (in)
{ {
case 0: return rsx::vertex_base_type::invalid;
case 1: return rsx::vertex_base_type::s1; case 1: return rsx::vertex_base_type::s1;
case 2: return rsx::vertex_base_type::f; case 2: return rsx::vertex_base_type::f;
case 3: return rsx::vertex_base_type::sf; case 3: return rsx::vertex_base_type::sf;

View File

@ -5,7 +5,6 @@ namespace rsx
{ {
enum class vertex_base_type : u8 enum class vertex_base_type : u8
{ {
invalid,
s1, ///< signed byte s1, ///< signed byte
f, ///< float f, ///< float
sf, ///< half float sf, ///< half float