Home
last modified time | relevance | path

Searched refs:GpuComputeProgram (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dgpu_program.h80 class GpuComputeProgram {
82 GpuComputeProgram() = default;
83 virtual ~GpuComputeProgram() = default;
85 GpuComputeProgram(const GpuComputeProgram&) = delete;
86 GpuComputeProgram& operator=(const GpuComputeProgram&) = delete;
H A Ddevice.h44 class GpuComputeProgram; variable
48 class GpuComputeProgram; variable
218 …virtual BASE_NS::unique_ptr<GpuComputeProgram> CreateGpuComputeProgram(GpuComputeProgramCreateData…
233 const GpuComputeProgram& gpuProgram, const PipelineLayout& pipelineLayout,
H A Dshader_manager.h227 const GpuComputeProgram* GetGpuComputeProgram(const RenderHandle& gpuHandle) const;
375 BASE_NS::unique_ptr<GpuComputeProgram> gsp;
438 BASE_NS::unique_ptr<GpuComputeProgram> computeProgram;
H A Dshader_manager.cpp1532 const GpuComputeProgram* ShaderManager::GetGpuComputeProgram(const RenderHandle& handle) const in GetGpuComputeProgram()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Dpipeline_state_object_vk.h29 class GpuComputeProgram; variable
61 ComputePipelineStateObjectVk(Device& device, const GpuComputeProgram& gpuComputeProgram,
H A Ddevice_vk.h38 class GpuComputeProgram; variable
156 …BASE_NS::unique_ptr<GpuComputeProgram> CreateGpuComputeProgram(const GpuComputeProgramCreateData& …
171 const GpuComputeProgram& gpuProgram, const PipelineLayout& pipelineLayout,
H A Dgpu_program_vk.h60 class GpuComputeProgramVk final : public GpuComputeProgram {
H A Dgpu_program_vk.cpp93 : GpuComputeProgram() in GpuComputeProgramVk()
H A Dpipeline_state_object_vk.cpp534 ComputePipelineStateObjectVk::ComputePipelineStateObjectVk(Device& device, const GpuComputeProgram&… in ComputePipelineStateObjectVk()
H A Ddevice_vk.cpp1298 unique_ptr<GpuComputeProgram> DeviceVk::CreateGpuComputeProgram(const GpuComputeProgramCreateData& … in CreateGpuComputeProgram()
1329 …ipelineStateObject> DeviceVk::CreateComputePipelineStateObject(const GpuComputeProgram& gpuProgram, in CreateComputePipelineStateObject()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dpipeline_state_object_gles.h30 class GpuComputeProgram; variable
75 ComputePipelineStateObjectGLES(Device& device, const GpuComputeProgram& gpuComputeProgram,
H A Ddevice_gles.h46 class GpuComputeProgram; variable
147 …BASE_NS::unique_ptr<GpuComputeProgram> CreateGpuComputeProgram(const GpuComputeProgramCreateData& …
162 const GpuComputeProgram& gpuProgram, const PipelineLayout& pipelineLayout,
H A Dgpu_program_gles.h93 class GpuComputeProgramGLES final : public GpuComputeProgram {
H A Dpipeline_state_object_gles.cpp251 const GpuComputeProgram& gpuComputeProgram, const PipelineLayout& pipelineLayout, in ComputePipelineStateObjectGLES()
H A Dgpu_program_gles.cpp698 GpuComputeProgramGLES::GpuComputeProgramGLES(Device& device) : GpuComputeProgram(), device_((Device… in GpuComputeProgramGLES()
701 : GpuComputeProgram(), device_((DeviceGLES&)device) in GpuComputeProgramGLES()
H A Ddevice_gles.cpp2119 unique_ptr<GpuComputeProgram> DeviceGLES::CreateGpuComputeProgram(const GpuComputeProgramCreateData… in CreateGpuComputeProgram()
2152 …elineStateObject> DeviceGLES::CreateComputePipelineStateObject(const GpuComputeProgram& gpuProgram, in CreateComputePipelineStateObject()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/
H A Dnode_context_pso_manager.cpp390 …if (const GpuComputeProgram* gcp = shaderMgr_.GetGpuComputeProgram(psoDataRef.shaderHandle); gcp) { in GetComputePso()