Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Commits
dd3fb9a6
Verified
Commit
dd3fb9a6
authored
3 years ago
by
Tobias Frisch
Browse files
Options
Downloads
Patches
Plain Diff
[
#59
] Fixed VMA to work
Signed-off-by:
Tobias Frisch
<
tfrisch@uni-koblenz.de
>
parent
25f97257
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
config/lib/VulkanMemoryAllocator.cmake
+1
-2
1 addition, 2 deletions
config/lib/VulkanMemoryAllocator.cmake
lib/VulkanMemoryAllocator
+0
-1
0 additions, 1 deletion
lib/VulkanMemoryAllocator
src/vkcv/Context.cpp
+1
-1
1 addition, 1 deletion
src/vkcv/Context.cpp
vma/vma.cpp
+4
-0
4 additions, 0 deletions
vma/vma.cpp
with
6 additions
and
4 deletions
config/lib/VulkanMemoryAllocator.cmake
+
1
−
2
View file @
dd3fb9a6
if
((
EXISTS
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator"
)
AND
(
EXISTS
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator-Hpp"
))
if
(
EXISTS
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator-Hpp"
)
set
(
VMA_HPP_PATH
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator-Hpp"
CACHE INTERNAL
""
)
set
(
VMA_RECORDING_ENABLED OFF CACHE INTERNAL
""
)
...
...
This diff is collapsed.
Click to expand it.
VulkanMemoryAllocator
@
55868965
Compare
55868965
...
55868965
Subproject commit 55868965ae1fa956c07695d4642e1add8c9450f7
This diff is collapsed.
Click to expand it.
src/vkcv/Context.cpp
+
1
−
1
View file @
dd3fb9a6
...
...
@@ -320,7 +320,7 @@ namespace vkcv
nullptr
,
nullptr
,
instance
,
VK_HEADER_VERSION_COMPLETE
0
);
vma
::
Allocator
allocator
=
vma
::
createAllocator
(
allocatorCreateInfo
);
...
...
This diff is collapsed.
Click to expand it.
vma/vma.cpp
+
4
−
0
View file @
dd3fb9a6
#ifndef NDEBUG
#define _DEBUG
#endif
#define VMA_IMPLEMENTATION
#include
"vk_mem_alloc.hpp"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment