mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-09 17:20:58 +00:00
[vulkan] Fix incorrect reference to imageviews
The old system used just "views", but I had at some time decided that I might want to support specifying buffers and buffer views, but forgot to change the name in vkparse.c.
This commit is contained in:
parent
25dfa75505
commit
ab4ea1b333
1 changed files with 1 additions and 1 deletions
|
@ -1431,7 +1431,7 @@ QFV_ParseJobInfo (vulkan_ctx_t *ctx, plitem_t *item, qfv_renderctx_t *rctx)
|
||||||
|
|
||||||
static const char *extra_items[] = {
|
static const char *extra_items[] = {
|
||||||
"images",
|
"images",
|
||||||
"views",
|
"imageviews",
|
||||||
"renderpasses",
|
"renderpasses",
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue