OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bufferView
(Results
1 - 25
of
42
) sorted by null
1
2
/external/skia/src/gpu/vk/
GrVkBufferView.h
22
VkBufferView
bufferView
() const { return fBufferView; }
31
GrVkBufferView(VkBufferView
bufferView
) : INHERITED(), fBufferView(
bufferView
) {}
GrVkBufferView.cpp
14
VkBufferView
bufferView
;
28
nullptr, &
bufferView
));
33
return new GrVkBufferView(
bufferView
);
GrVkPipelineState.cpp
433
const GrVkBufferView*
bufferView
= GrVkBufferView::Create(gpu, buffer->buffer(),
436
fBufferViews.push(
bufferView
);
453
VkBufferView vkBufferView =
bufferView
->
bufferView
();
/external/deqp/external/vulkancts/modules/vulkan/api/
vktApiNullHandleTests.cpp
47
inline void release (Context& context, VkBufferView
bufferView
, const VkAllocationCallbacks* pAllocator)
49
context.getDeviceInterface().destroyBufferView(context.getDevice(),
bufferView
, pAllocator);
vktApiBufferViewCreateTests.cpp
344
Move<VkBufferView>
bufferView
;
358
bufferView
= createBufferView(vk, vkDevice, &bufferViewCreateInfo, (const VkAllocationCallbacks*)DE_NULL);
390
return tcu::TestStatus::pass("
BufferView
test");
402
de::MovePtr<tcu::TestCaseGroup> bufferViewTests (new tcu::TestCaseGroup(testCtx, "create", "
BufferView
Construction Tests"));
410
de::MovePtr<tcu::TestCaseGroup>(new tcu::TestCaseGroup(testCtx, "suballocation", "
BufferView
Construction Tests for Suballocated Buffer")),
411
de::MovePtr<tcu::TestCaseGroup>(new tcu::TestCaseGroup(testCtx, "dedicated_alloc", "
BufferView
Construction Tests for Dedicatedly Allocated Buffer"))
vktApiObjectManagementTests.cpp
681
struct
BufferView
718
return getSafeObjectCount<
BufferView
>(context, params, DEFAULT_MAX_CONCURRENT_OBJECTS);
[
all
...]
/external/mesa3d/src/amd/vulkan/
radv_image.c
[
all
...]
/external/mesa3d/src/intel/vulkan/
anv_image.c
724
anv_DestroyBufferView(VkDevice _device, VkBufferView
bufferView
,
728
ANV_FROM_HANDLE(anv_buffer_view, view,
bufferView
);
/external/deqp/external/vulkancts/framework/vulkan/
vkDeviceDriverImpl.inl
185
void DeviceDriver::destroyBufferView (VkDevice device, VkBufferView
bufferView
, const VkAllocationCallbacks* pAllocator) const
187
m_vk.destroyBufferView(device,
bufferView
, pAllocator);
[
all
...]
vkConcreteDeviceInterface.inl
40
virtual void destroyBufferView (VkDevice device, VkBufferView
bufferView
, const VkAllocationCallbacks* pAllocator) const;
vkVirtualDeviceInterface.inl
40
virtual void destroyBufferView (VkDevice device, VkBufferView
bufferView
, const VkAllocationCallbacks* pAllocator) const = 0;
vkFunctionPointerTypes.inl
57
typedef VKAPI_ATTR void (VKAPI_CALL* DestroyBufferViewFunc) (VkDevice device, VkBufferView
bufferView
, const VkAllocationCallbacks* pAllocator);
[
all
...]