PixelShaderGen: Add logic ops to pixel_shader_uid_data

This commit is contained in:
OatmealDome
2021-08-02 23:40:10 -04:00
parent 04ec02c06b
commit c12b9b013b
3 changed files with 6 additions and 1 deletions

View File

@ -331,6 +331,9 @@ PixelShaderUid GetPixelShaderUid()
uid_data->blend_subtract_alpha = state.subtractAlpha;
}
uid_data->logic_op_enable = state.logicopenable;
uid_data->logic_op_mode = u32(state.logicmode.Value());
return out;
}