spaces->tabs

This commit is contained in:
Henrik Rydgård 2022-09-04 00:05:28 +02:00
parent d6b953bddd
commit 3d2e78fbf4
2 changed files with 2 additions and 2 deletions

View file

@ -1532,7 +1532,8 @@ void GenericMaskState::Log() {
}
void GenericBlendState::Log() {
WARN_LOG(G3D, "Blend: hwenable=%d readfb=%d replblend=%d replalpha=%d", blendEnabled, applyFramebufferRead, replaceBlend, (int)replaceAlphaWithStencil);
WARN_LOG(G3D, "Blend: hwenable=%d readfb=%d replblend=%d replalpha=%d",
blendEnabled, applyFramebufferRead, replaceBlend, (int)replaceAlphaWithStencil);
}
void ComputedPipelineState::Convert(bool shaderBitOpsSuppported) {

View file

@ -246,7 +246,6 @@ struct ComputedPipelineState {
GenericBlendState blendState;
GenericMaskState maskState;
GenericLogicState logicState;
// TODO: Add logic and possibly stencil here.
void Convert(bool shaderBitOpsSupported);
};