• Home
  • Raw
  • Download

Lines Matching refs:VkDeviceObj

384         VkDeviceObj *temp_device = new VkDeviceObj(0, objs[0], m_device_extension_names);  in GetPhysicalDeviceFeatures()
419 m_device = new VkDeviceObj(0, objs[0], m_device_extension_names, features, create_device_pnext); in InitState()
632 VkDeviceObj::VkDeviceObj(uint32_t id, VkPhysicalDevice obj) : vk_testing::Device(obj), id(id) { in VkDeviceObj() function in VkDeviceObj
639 VkDeviceObj::VkDeviceObj(uint32_t id, VkPhysicalDevice obj, std::vector<const char *> &extension_na… in VkDeviceObj() function in VkDeviceObj
648 uint32_t VkDeviceObj::QueueFamilyMatching(VkQueueFlags with, VkQueueFlags without, bool all_bits) { in QueueFamilyMatching()
660 void VkDeviceObj::SetDeviceQueue() { in SetDeviceQueue()
665 VkQueueObj *VkDeviceObj::GetDefaultQueue() { in GetDefaultQueue()
669 VkDescriptorSetLayoutObj::VkDescriptorSetLayoutObj(const VkDeviceObj *device, in VkDescriptorSetLayoutObj()
681 VkDescriptorSetObj::VkDescriptorSetObj(VkDeviceObj *device) : m_device(device), m_nextSlot(0) {} in VkDescriptorSetObj()
805 VkRenderpassObj::VkRenderpassObj(VkDeviceObj *dev) { in VkRenderpassObj()
834 VkImageObj::VkImageObj(VkDeviceObj *dev) { in VkImageObj()
1232 VkTextureObj::VkTextureObj(VkDeviceObj *device, uint32_t *colors) : VkImageObj(device) { in VkTextureObj()
1283 VkSamplerObj::VkSamplerObj(VkDeviceObj *device) { in VkSamplerObj()
1311 VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, VkBufferUsageFlags usage) { in VkConstantBufferObj()
1322 VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, VkDeviceSize allocationSize, const vo… in VkConstantBufferObj()
1352 VkShaderObj::VkShaderObj(VkDeviceObj *device, const char *shader_code, VkShaderStageFlagBits stage,… in VkShaderObj()
1380 VkShaderObj::VkShaderObj(VkDeviceObj *device, const std::string spv_source, VkShaderStageFlagBits s… in VkShaderObj()
1408 VkPipelineLayoutObj::VkPipelineLayoutObj(VkDeviceObj *device, in VkPipelineLayoutObj()
1423 VkPipelineObj::VkPipelineObj(VkDeviceObj *device) { in VkPipelineObj()
1606 VkCommandBufferObj::VkCommandBufferObj(VkDeviceObj *device, VkCommandPoolObj *pool, VkCommandBuffer… in VkCommandBufferObj()
1771 VkCommandPoolObj::VkCommandPoolObj(VkDeviceObj *device, uint32_t queue_family_index, VkCommandPoolC… in VkCommandPoolObj()
1776 VkDepthStencilObj::VkDepthStencilObj(VkDeviceObj *device) : VkImageObj(device) { m_initialized = fa… in VkDepthStencilObj()
1782 void VkDepthStencilObj::Init(VkDeviceObj *device, int32_t width, int32_t height, VkFormat format, V… in Init()