mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[vulkan] Fix a pure warning
Need to do more testing with optimized builds, but...
This commit is contained in:
parent
2acdaa0252
commit
f96d7109af
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ struct qfv_device_s;
|
|||
|
||||
scrap_t *QFV_CreateScrap (struct qfv_device_s *device, int size,
|
||||
QFFormat format, struct qfv_stagebuf_s *stage);
|
||||
size_t QFV_ScrapSize (scrap_t *scrap);
|
||||
size_t QFV_ScrapSize (scrap_t *scrap) __attribute__((pure));
|
||||
void QFV_ScrapClear (scrap_t *scrap);
|
||||
void QFV_DestroyScrap (scrap_t *scrap);
|
||||
VkImageView QFV_ScrapImageView (scrap_t *scrap) __attribute__((pure));
|
||||
|
|
Loading…
Reference in a new issue