Home
last modified time | relevance | path

Searched refs:ShaderModuleGLES (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dshader_module_gles.cpp221 ShaderModuleGLES::ShaderModuleGLES(Device& device, const ShaderModuleCreateInfo& createInfo) in ShaderModuleGLES() function in ShaderModuleGLES
233 ShaderModuleGLES::~ShaderModuleGLES() = default;
235 ShaderStageFlags ShaderModuleGLES::GetShaderStageFlags() const in GetShaderStageFlags()
240 string ShaderModuleGLES::GetGLSL(const ShaderSpecializationConstantDataView& specData) const in GetGLSL()
245 const ShaderModulePlatformData& ShaderModuleGLES::GetPlatformData() const in GetPlatformData()
250 const PipelineLayout& ShaderModuleGLES::GetPipelineLayout() const in GetPipelineLayout()
255 ShaderSpecializationConstantView ShaderModuleGLES::GetSpecilization() const in GetSpecilization()
260 VertexInputDeclarationView ShaderModuleGLES::GetVertexInputDeclaration() const in GetVertexInputDeclaration()
265 ShaderThreadGroup ShaderModuleGLES::GetThreadGroupSize() const in GetThreadGroupSize()
H A Dgpu_program_gles.h31 class ShaderModuleGLES; variable
51 const ShaderModuleGLES* vertShaderModule_ { nullptr };
52 const ShaderModuleGLES* fragShaderModule_ { nullptr };
90 const ShaderModuleGLES* module_ { nullptr };
H A Dshader_module_gles.h54 class ShaderModuleGLES final : public ShaderModule {
56 ShaderModuleGLES(Device&, const ShaderModuleCreateInfo&);
57 ~ShaderModuleGLES();
H A Dgpu_program_gles.cpp545 plat_.vertShaderModule_ = static_cast<const ShaderModuleGLES*>(createData.vertShaderModule); in GpuShaderProgramGLES()
546 plat_.fragShaderModule_ = static_cast<const ShaderModuleGLES*>(createData.fragShaderModule); in GpuShaderProgramGLES()
705 plat_.module_ = static_cast<const ShaderModuleGLES*>(createData.compShaderModule); in GpuComputeProgramGLES()
H A Ddevice_gles.cpp2106 return make_unique<ShaderModuleGLES>(*this, data); in CreateShaderModule()
2111 return make_unique<ShaderModuleGLES>(*this, data); in CreateComputeShaderModule()