mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d11] Remove useless const qualifiers on IsYCbCr and NeedsCopy return values
This commit is contained in:
parent
ce5e7ad427
commit
aa06e71dee
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue