/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/generic/ |
H A D | platform_device_gles.cpp | 23 const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) in CreateGpuImageView() 29 const ImageDescGLES& tmp = (const ImageDescGLES&)platformData; in CreateGpuImageView() 42 const ImageDescGL& tmp = (const ImageDescGL&)platformData; in CreateGpuImageView() 22 CreateGpuImageView( const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) CreateGpuImageView() argument
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | device_vk.h | 139 const GpuImageDesc& desc, const GpuImagePlatformData& platformData) override; 141 const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) override; 143 const GpuImageDesc& desc, const GpuImagePlatformData& platformData, const uintptr_t hwBuffer); 144 BASE_NS::vector<BASE_NS::unique_ptr<GpuImage>> CreateGpuImageViews(const Swapchain& platformData) override;
|
H A D | gpu_image_vk.h | 50 Device& device, const GpuImageDesc& desc, const GpuImagePlatformData& platformData, const uintptr_t hwBuffer);
|
H A D | gpu_image_vk.cpp | 220 Device& device, const GpuImageDesc& desc, const GpuImagePlatformData& platformData, const uintptr_t hwBuffer) in GpuImageVk() 221 : device_(device), plat_((const GpuImagePlatformDataVk&)platformData), in GpuImageVk() 219 GpuImageVk( Device& device, const GpuImageDesc& desc, const GpuImagePlatformData& platformData, const uintptr_t hwBuffer) GpuImageVk() argument
|
H A D | device_vk.cpp | 1231 const GpuImageDesc& desc, const GpuImagePlatformData& platformData, const uintptr_t hwBuffer) in CreateGpuImageView() 1233 return make_unique<GpuImageVk>(*this, desc, platformData, hwBuffer); in CreateGpuImageView() 1236 unique_ptr<GpuImage> DeviceVk::CreateGpuImageView(const GpuImageDesc& desc, const GpuImagePlatformData& platformData) in CreateGpuImageView() argument 1238 return CreateGpuImageView(desc, platformData, 0); in CreateGpuImageView() 1257 const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) in CreateGpuImageView() 1259 const ImageDescVk& imageDesc = (const ImageDescVk&)platformData; in CreateGpuImageView() 1230 CreateGpuImageView( const GpuImageDesc& desc, const GpuImagePlatformData& platformData, const uintptr_t hwBuffer) CreateGpuImageView() argument 1256 CreateGpuImageView( const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) CreateGpuImageView() argument
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | gpu_image_gles.h | 55 GpuImageGLES(Device& device, const GpuImageDesc& desc, const GpuImagePlatformData& platformData);
|
H A D | gpu_image_gles.cpp | 227 GpuImageGLES::GpuImageGLES(Device& device, const GpuImageDesc& desc, const GpuImagePlatformData& platformData) in GpuImageGLES() argument 228 : GpuImage(), device_((DeviceGLES&)device), plat_((const GpuImagePlatformDataGL&)platformData), desc_(desc), in GpuImageGLES()
|
H A D | device_gles.h | 132 const GpuImageDesc& desc, const GpuImagePlatformData& platformData) override; 134 const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) override;
|
H A D | device_gles.cpp | 2063 unique_ptr<GpuImage> DeviceGLES::CreateGpuImageView(const GpuImageDesc& desc, const GpuImagePlatformData& platformData) 2066 return make_unique<GpuImageGLES>(*this, desc, platformData);
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/ |
H A D | device.h | 204 const GpuImageDesc& desc, const GpuImagePlatformData& platformData) = 0; 206 const GpuImageDesc& desc, const BackendSpecificImageDesc& platformData) = 0; 207 virtual BASE_NS::vector<BASE_NS::unique_ptr<GpuImage>> CreateGpuImageViews(const Swapchain& platformData) = 0;
|