1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-05 01:24:14 +01:00

[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

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;
}