[d3d11] Remove useless const qualifiers on IsYCbCr and NeedsCopy return values

This commit is contained in:
Joshua Ashton 2022-09-10 21:01:51 +00:00 committed by Joshie
parent ce5e7ad427
commit aa06e71dee
1 changed files with 2 additions and 2 deletions

View File

@ -134,11 +134,11 @@ namespace dxvk {
void STDMETHODCALLTYPE GetDesc(
D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC* pDesc);
const bool IsYCbCr() const {
bool IsYCbCr() const {
return m_isYCbCr;
}
const bool NeedsCopy() const {
bool NeedsCopy() const {
return m_copy != nullptr;
}