• Home
  • Raw
  • Download

Lines Matching refs:VkDeviceObj

389         VkDeviceObj *temp_device = new VkDeviceObj(0, objs[0], m_device_extension_names);  in GetPhysicalDeviceFeatures()
424 m_device = new VkDeviceObj(0, objs[0], m_device_extension_names, features, create_device_pnext); in InitState()
784 VkDeviceObj::VkDeviceObj(uint32_t id, VkPhysicalDevice obj) : vk_testing::Device(obj), id(id) { in VkDeviceObj() function in VkDeviceObj
791 VkDeviceObj::VkDeviceObj(uint32_t id, VkPhysicalDevice obj, std::vector<const char *> &extension_na… in VkDeviceObj() function in VkDeviceObj
800 uint32_t VkDeviceObj::QueueFamilyMatching(VkQueueFlags with, VkQueueFlags without, bool all_bits) { in QueueFamilyMatching()
812 void VkDeviceObj::SetDeviceQueue() { in SetDeviceQueue()
817 VkQueueObj *VkDeviceObj::GetDefaultQueue() { in GetDefaultQueue()
822 VkQueueObj *VkDeviceObj::GetDefaultComputeQueue() { in GetDefaultComputeQueue()
827 VkDescriptorSetLayoutObj::VkDescriptorSetLayoutObj(const VkDeviceObj *device, in VkDescriptorSetLayoutObj()
840 VkDescriptorSetObj::VkDescriptorSetObj(VkDeviceObj *device) : m_device(device), m_nextSlot(0) {} in VkDescriptorSetObj()
964 VkRenderpassObj::VkRenderpassObj(VkDeviceObj *dev) { in VkRenderpassObj()
993 VkImageObj::VkImageObj(VkDeviceObj *dev) { in VkImageObj()
1394 VkTextureObj::VkTextureObj(VkDeviceObj *device, uint32_t *colors) : VkImageObj(device) { in VkTextureObj()
1445 VkSamplerObj::VkSamplerObj(VkDeviceObj *device) { in VkSamplerObj()
1473 VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, VkBufferUsageFlags usage) { in VkConstantBufferObj()
1484 VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, VkDeviceSize allocationSize, const vo… in VkConstantBufferObj()
1514 VkShaderObj::VkShaderObj(VkDeviceObj *device, const char *shader_code, VkShaderStageFlagBits stage,… in VkShaderObj()
1542 VkShaderObj::VkShaderObj(VkDeviceObj *device, const std::string spv_source, VkShaderStageFlagBits s… in VkShaderObj()
1570 VkPipelineLayoutObj::VkPipelineLayoutObj(VkDeviceObj *device, in VkPipelineLayoutObj()
1585 VkPipelineObj::VkPipelineObj(VkDeviceObj *device) { in VkPipelineObj()
1780 VkCommandBufferObj::VkCommandBufferObj(VkDeviceObj *device, VkCommandPoolObj *pool, VkCommandBuffer… in VkCommandBufferObj()
1958 VkCommandPoolObj::VkCommandPoolObj(VkDeviceObj *device, uint32_t queue_family_index, VkCommandPoolC… in VkCommandPoolObj()
1963 VkDepthStencilObj::VkDepthStencilObj(VkDeviceObj *device) : VkImageObj(device) { m_initialized = fa… in VkDepthStencilObj()
1969 void VkDepthStencilObj::Init(VkDeviceObj *device, int32_t width, int32_t height, VkFormat format, V… in Init()