Home
last modified time | relevance | path

Searched refs:GpuComputeProgramGLES (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dgpu_program_gles.h93 class GpuComputeProgramGLES final : public GpuComputeProgram {
95 GpuComputeProgramGLES(Device& device, const GpuComputeProgramCreateData& createData);
96 ~GpuComputeProgramGLES();
101 BASE_NS::unique_ptr<GpuComputeProgramGLES> Specialize(
105 GpuComputeProgramGLES(Device& device);
H A Dpipeline_state_object_gles.h31 class GpuComputeProgramGLES; variable
36 const GpuComputeProgramGLES* computeShader;
84 BASE_NS::unique_ptr<GpuComputeProgramGLES> specialized_ { nullptr };
H A Dgpu_program_gles.cpp698 GpuComputeProgramGLES::GpuComputeProgramGLES(Device& device) : GpuComputeProgram(), device_((Device… in GpuComputeProgramGLES() function in GpuComputeProgramGLES
700 GpuComputeProgramGLES::GpuComputeProgramGLES(Device& device, const GpuComputeProgramCreateData& cre… in GpuComputeProgramGLES() function in GpuComputeProgramGLES
722 GpuComputeProgramGLES::~GpuComputeProgramGLES() in ~GpuComputeProgramGLES()
730 const GpuComputeProgramPlatformDataGL& GpuComputeProgramGLES::GetPlatformData() const in GetPlatformData()
736 const ComputeShaderReflection& GpuComputeProgramGLES::GetReflection() const in GetReflection()
742 unique_ptr<GpuComputeProgramGLES> GpuComputeProgramGLES::Specialize( in Specialize()
746 unique_ptr<GpuComputeProgramGLES> ret { new GpuComputeProgramGLES(device_) }; in Specialize()
H A Dpipeline_state_object_gles.cpp257 const auto& source = static_cast<const GpuComputeProgramGLES&>(gpuComputeProgram); in ComputePipelineStateObjectGLES()
H A Drender_backend_gles.h35 class GpuComputeProgramGLES; variable
H A Ddevice_gles.cpp2121 return make_unique<GpuComputeProgramGLES>(*this, data); in CreateGpuComputeProgram()