Home
last modified time | relevance | path

Searched refs:pView (Results 1 – 19 of 19) sorted by relevance

/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkan_ios.h31 const void* pView; member
Dvulkan_macos.h31 const void* pView; member
Dvk_icd.h185 const void *pView; member
192 const void *pView; member
Dvulkansc.hpp1294 …o * pCreateInfo, const VkAllocationCallbacks * pAllocator, VkBufferView * pView ) const VULKAN_HPP… in vkCreateBufferView()
1296 return ::vkCreateBufferView( device, pCreateInfo, pAllocator, pView ); in vkCreateBufferView()
1324 …fo * pCreateInfo, const VkAllocationCallbacks * pAllocator, VkImageView * pView ) const VULKAN_HPP… in vkCreateImageView()
1326 return ::vkCreateImageView( device, pCreateInfo, pAllocator, pView ); in vkCreateImageView()
Dvulkan.hpp1325 …o * pCreateInfo, const VkAllocationCallbacks * pAllocator, VkBufferView * pView ) const VULKAN_HPP… in vkCreateBufferView()
1327 return ::vkCreateBufferView( device, pCreateInfo, pAllocator, pView ); in vkCreateBufferView()
1355 …fo * pCreateInfo, const VkAllocationCallbacks * pAllocator, VkImageView * pView ) const VULKAN_HPP… in vkCreateImageView()
1357 return ::vkCreateImageView( device, pCreateInfo, pAllocator, pView ); in vkCreateImageView()
Dvulkansc_funcs.hpp1534 …ACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::BufferView * pView, Dispatch const & … in createBufferView() argument
1537 …t_cast<const VkAllocationCallbacks *>( pAllocator ), reinterpret_cast<VkBufferView *>( pView ) ) ); in createBufferView()
1725 …PACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::ImageView * pView, Dispatch const & … in createImageView() argument
1728 …et_cast<const VkAllocationCallbacks *>( pAllocator ), reinterpret_cast<VkImageView *>( pView ) ) ); in createImageView()
Dvulkan_core.h4038 …VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView);
4043 …t VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView);
4405 VkBufferView* pView);
4433 VkImageView* pView);
Dvulkansc_handles.hpp4651 …ACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::BufferView * pView, Dispatch const & …
4715 …PACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::ImageView * pView, Dispatch const & …
Dvulkan_funcs.hpp1761 …ACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::BufferView * pView, Dispatch const & … in createBufferView() argument
1764 …t_cast<const VkAllocationCallbacks *>( pAllocator ), reinterpret_cast<VkBufferView *>( pView ) ) ); in createBufferView()
1952 …PACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::ImageView * pView, Dispatch const & … in createImageView() argument
1955 …et_cast<const VkAllocationCallbacks *>( pAllocator ), reinterpret_cast<VkImageView *>( pView ) ) ); in createImageView()
Dvulkan_structs.hpp39651 : pNext( pNext_ ), flags( flags_ ), pView( pView_ )
39685 pView = pView_; in setPView()
39709 return std::tie( sType, pNext, flags, pView ); in reflect()
39725 && ( pView == rhs.pView ); in operator ==()
39739 const void * pView = {}; member
46499 : pNext( pNext_ ), flags( flags_ ), pView( pView_ )
46533 pView = pView_; in setPView()
46557 return std::tie( sType, pNext, flags, pView ); in reflect()
46573 && ( pView == rhs.pView ); in operator ==()
46587 const void * pView = {}; member
Dvulkan_handles.hpp8170 …ACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::BufferView * pView, Dispatch const & …
8234 …PACE::AllocationCallbacks * pAllocator, VULKAN_HPP_NAMESPACE::ImageView * pView, Dispatch const & …
Dvulkan_hash.hpp5092 VULKAN_HPP_HASH_COMBINE( seed, iOSSurfaceCreateInfoMVK.pView ); in operator ()()
5956 VULKAN_HPP_HASH_COMBINE( seed, macOSSurfaceCreateInfoMVK.pView ); in operator ()()
/hardware/google/gfxstream/host/vulkan/testing/
DVkDecoderTestDispatch.h159 const VkAllocationCallbacks* pAllocator, VkImageView* pView) { in vkCreateImageView() argument
160 return mDgs->on_vkCreateImageView(mBp, nullptr, device, pCreateInfo, pAllocator, pView); in vkCreateImageView()
/hardware/google/gfxstream/host/vulkan/
DVkDecoderSnapshot.cpp498 const VkAllocationCallbacks* pAllocator, VkBufferView* pView) { in vkCreateBufferView() argument
499 if (!pView) return; in vkCreateBufferView()
502 mReconstruction.addHandles((const uint64_t*)pView, 1); in vkCreateBufferView()
503 mReconstruction.addHandleDependency((const uint64_t*)pView, 1, (uint64_t)(uintptr_t)device); in vkCreateBufferView()
506 mReconstruction.forEachHandleAddApi((const uint64_t*)pView, 1, apiCallHandle, in vkCreateBufferView()
508 mReconstruction.setCreatedHandlesForApi(apiCallHandle, (const uint64_t*)pView, 1); in vkCreateBufferView()
551 const VkAllocationCallbacks* pAllocator, VkImageView* pView) { in vkCreateImageView() argument
552 if (!pView) return; in vkCreateImageView()
555 mReconstruction.addHandles((const uint64_t*)pView, 1); in vkCreateImageView()
556 mReconstruction.addHandleDependency((const uint64_t*)pView, 1, (uint64_t)(uintptr_t)device); in vkCreateImageView()
[all …]
DVkDecoderGlobalState.cpp2805 const VkAllocationCallbacks* pAllocator, VkImageView* pView) { in on_vkCreateImageView() argument
2842 VkResult result = vk->vkCreateImageView(device, pCreateInfo, pAllocator, pView); in on_vkCreateImageView()
2847 VALIDATE_NEW_HANDLE_INFO_ENTRY(mImageViewInfo, *pView); in on_vkCreateImageView()
2848 auto& imageViewInfo = mImageViewInfo[*pView]; in on_vkCreateImageView()
2853 deviceInfo->debugUtilsHelper.addDebugLabel(*pView, "ColorBuffer:%d", in on_vkCreateImageView()
2857 *pView = new_boxed_non_dispatchable_VkImageView(*pView); in on_vkCreateImageView()
9420 VkImageView* pView) { in on_vkCreateImageView() argument
9421 return mImpl->on_vkCreateImageView(pool, snapshotInfo, device, pCreateInfo, pAllocator, pView); in on_vkCreateImageView()
DVkDecoderGlobalState.h273 const VkAllocationCallbacks* pAllocator, VkImageView* pView);
DVkDecoder.cpp3608 VkBufferView* pView; in decode() local
3633 vkReadStream->alloc((void**)&pView, sizeof(VkBufferView)); in decode()
3637 *(VkBufferView*)pView = (VkBufferView)(VkBufferView)((VkBufferView)(*&cgen_var_2)); in decode()
3650 (unsigned long long)pAllocator, (unsigned long long)pView); in decode()
3655 vk->vkCreateBufferView(unboxed_device, pCreateInfo, pAllocator, pView); in decode()
3667 vkStream->handleMapping()->mapHandles_VkBufferView((VkBufferView*)pView, 1); in decode()
3668 vkStream->write((VkBufferView*)pView, 8 * 1); in decode()
3676 vkCreateBufferView_VkResult_return, device, pCreateInfo, pAllocator, pView); in decode()
3940 VkImageView* pView; in decode() local
3963 vkReadStream->alloc((void**)&pView, sizeof(VkImageView)); in decode()
[all …]
DVkDecoderSnapshot.h296 const VkAllocationCallbacks* pAllocator, VkBufferView* pView);
318 const VkAllocationCallbacks* pAllocator, VkImageView* pView);
/hardware/google/gfxstream/scripts/print_gfx_logs/
Dvulkan_printer.py219 pView = printer.write_int("pView", 8, indent, optional=False, count=None, big_endian=False)