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
66ad5638
Commit
66ad5638
authored
3 years ago
by
Sebastian Gaida
Browse files
Options
Downloads
Patches
Plain Diff
[
#111
] cherrypick
6a1f9a5e
&
2934d8bf
form
#71
parent
b44d10ca
No related branches found
No related tags found
1 merge request
!95
Resolve "Wassersimulation mit Interaktion"
Pipeline
#27083
passed
3 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/vkcv/Core.cpp
+10
-10
10 additions, 10 deletions
src/vkcv/Core.cpp
with
10 additions
and
10 deletions
src/vkcv/Core.cpp
+
10
−
10
View file @
66ad5638
...
...
@@ -518,7 +518,7 @@ namespace vkcv
color
);
beginDebugLabel
(
cmdBuffer
,
&
(
static_cast
<
const
VkDebugUtilsLabelEXT
&>
(
debug
)));
beginDebugLabel
(
static_cast
<
VkCommandBuffer
>
(
cmdBuffer
)
,
&
(
static_cast
<
const
VkDebugUtilsLabelEXT
&>
(
debug
)));
};
recordCommandsToStream
(
cmdStream
,
submitFunction
,
nullptr
);
...
...
@@ -536,7 +536,7 @@ namespace vkcv
}
auto
submitFunction
=
[
&
](
const
vk
::
CommandBuffer
&
cmdBuffer
)
{
endDebugLabel
(
cmdBuffer
);
endDebugLabel
(
static_cast
<
VkCommandBuffer
>
(
cmdBuffer
)
)
;
};
recordCommandsToStream
(
cmdStream
,
submitFunction
,
nullptr
);
...
...
@@ -888,7 +888,7 @@ namespace vkcv
label
.
c_str
()
);
setDebugLabel
(
device
,
&
(
static_cast
<
const
VkDebugUtilsObjectNameInfoEXT
&>
(
debug
)));
setDebugLabel
(
static_cast
<
VkDevice
>
(
device
)
,
&
(
static_cast
<
const
VkDebugUtilsObjectNameInfoEXT
&>
(
debug
)));
#endif
}
...
...
@@ -901,7 +901,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
eBuffer
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkBuffer
>
(
uint64_t
(
static_cast
<
VkBuffer
>
(
m_BufferManager
->
getBuffer
(
handle
)
)),
label
...
...
@@ -917,7 +917,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
eRenderPass
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkRenderPass
>
(
uint64_t
(
static_cast
<
VkRenderPass
>
(
m_PassManager
->
getVkPass
(
handle
)
)),
label
...
...
@@ -933,7 +933,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
ePipeline
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkPipeline
>
(
uint64_t
(
static_cast
<
VkPipeline
>
(
m_PipelineManager
->
getVkPipeline
(
handle
)
)),
label
...
...
@@ -949,7 +949,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
eDescriptorSet
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkDescriptorSet
>
(
uint64_t
(
static_cast
<
VkDescriptorSet
>
(
m_DescriptorManager
->
getDescriptorSet
(
handle
).
vulkanHandle
)),
label
...
...
@@ -965,7 +965,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
eSampler
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkSampler
>
(
uint64_t
(
static_cast
<
VkSampler
>
(
m_SamplerManager
->
getVulkanSampler
(
handle
)
)),
label
...
...
@@ -985,7 +985,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
eImage
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkImage
>
(
uint64_t
(
static_cast
<
VkImage
>
(
m_ImageManager
->
getVulkanImage
(
handle
)
)),
label
...
...
@@ -1001,7 +1001,7 @@ namespace vkcv
setDebugObjectLabel
(
m_Context
.
getDevice
(),
vk
::
ObjectType
::
eCommandBuffer
,
reinterpret_cast
<
uint64_t
>
(
static_cast
<
VkCommandBuffer
>
(
uint64_t
(
static_cast
<
VkCommandBuffer
>
(
m_CommandStreamManager
->
getStreamCommandBuffer
(
handle
)
)),
label
...
...
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