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

[dxvk] Remove useless const qualifier on getColorAttachmentIndex return type

This does nothing.
This commit is contained in:
Joshua Ashton 2022-09-10 20:59:00 +00:00 committed by Joshie
parent ec6ad90f22
commit f42df87937

View File

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