mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
vk: add "add_signed" in blend op.
This commit is contained in:
parent
fd4a153eef
commit
253e7a90b8
1 changed files with 2 additions and 1 deletions
|
@ -230,7 +230,8 @@ namespace vk
|
||||||
{
|
{
|
||||||
switch (op)
|
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::substract: return VK_BLEND_OP_SUBTRACT;
|
||||||
case rsx::blend_equation::reverse_substract: return VK_BLEND_OP_REVERSE_SUBTRACT;
|
case rsx::blend_equation::reverse_substract: return VK_BLEND_OP_REVERSE_SUBTRACT;
|
||||||
case rsx::blend_equation::min: return VK_BLEND_OP_MIN;
|
case rsx::blend_equation::min: return VK_BLEND_OP_MIN;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue