Skip to content

Commit

Permalink
VK: Fix duplicate macro declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamievlin committed Feb 12, 2024
1 parent 5abf377 commit 3518c44
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion include/vkrender.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ class picture;
#define EMPTY_VIEW 0, nullptr
#define VEC_VIEW(x) static_cast<uint32_t>((x).size()), (x).data()
#define STD_ARR_VIEW(x) static_cast<uint32_t>((x).size()), (x).data()
#define STD_ARR_VIEW(x) static_cast<uint32_t>(x.size()), x.data()
#define ARR_VIEW(x) static_cast<uint32_t>(sizeof(x) / sizeof((x)[0])), x
#define RAW_VIEW(x) static_cast<uint32_t>(sizeof(x)), x
#define ST_VIEW(s) static_cast<uint32_t>(sizeof(s)), &s
Expand Down

0 comments on commit 3518c44

Please sign in to comment.