OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pCommandBufferBindings
(Results
1 - 2
of
2
) sorted by null
/external/vulkan-validation-layers/layers/
core_validation.h
135
list<VkCommandBuffer>
pCommandBufferBindings
; // list container of cmd buffers that reference this mem object
[
all
...]
core_validation.cpp
558
if (pMemInfo->
pCommandBufferBindings
.size() > 0) {
559
for (list<VkCommandBuffer>::iterator it = pMemInfo->
pCommandBufferBindings
.begin();
560
it != pMemInfo->
pCommandBufferBindings
.end(); ++it) {
569
pMemInfo->
pCommandBufferBindings
.push_front(cb);
606
pInfo->
pCommandBufferBindings
.remove(cb);
628
size_t cmdBufRefCount = pMemObjInfo->
pCommandBufferBindings
.size();
631
if ((pMemObjInfo->
pCommandBufferBindings
.size()) != 0) {
639
if (cmdBufRefCount > 0 && pMemObjInfo->
pCommandBufferBindings
.size() > 0) {
640
for (list<VkCommandBuffer>::const_iterator it = pMemObjInfo->
pCommandBufferBindings
.begin();
641
it != pMemObjInfo->
pCommandBufferBindings
.end(); ++it)
[
all
...]
Completed in 615 milliseconds