mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Remove useless const qualifier on getColorAttachmentIndex return type
This does nothing.
This commit is contained in:
parent
ec6ad90f22
commit
f42df87937
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ namespace dxvk {
|
|||
* \brief Queries color attachment index of a given attachment
|
||||
* \returns The index, or -1 if the given attachment is the depth attachment
|
||||
*/
|
||||
const int32_t getColorAttachmentIndex(uint32_t id) const {
|
||||
int32_t getColorAttachmentIndex(uint32_t id) const {
|
||||
return m_attachments[id];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue