1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

vk: add missing compare func not_equal (#1876)

This commit is contained in:
raven02 2016-07-10 04:32:09 +08:00 committed by GitHub
parent d4da0e052d
commit ed8ebda804

View File

@ -47,6 +47,8 @@ namespace vk
return VK_COMPARE_OP_GREATER_OR_EQUAL;
case rsx::comparaison_function::equal:
return VK_COMPARE_OP_EQUAL;
case rsx::comparaison_function::not_equal:
return VK_COMPARE_OP_NOT_EQUAL;
case rsx::comparaison_function::always:
return VK_COMPARE_OP_ALWAYS;
default: