Skip to content

Commit

Permalink
vk: add "add_signed" in blend op.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zangetsu38 authored and kd-11 committed Jun 30, 2017
1 parent fd4a153 commit 253e7a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rpcs3/Emu/RSX/VK/VKGSRender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ namespace vk
{
switch (op)
{
case rsx::blend_equation::add: return VK_BLEND_OP_ADD;
case rsx::blend_equation::add:
case rsx::blend_equation::add_signed: return VK_BLEND_OP_ADD;
case rsx::blend_equation::substract: return VK_BLEND_OP_SUBTRACT;
case rsx::blend_equation::reverse_substract: return VK_BLEND_OP_REVERSE_SUBTRACT;
case rsx::blend_equation::min: return VK_BLEND_OP_MIN;
Expand Down

0 comments on commit 253e7a9

Please sign in to comment.