ShaderProgram creation parameters for initialized from shader source code strings. More...
#include <kanzi/core.ui/platform/graphics_backend/gl/shader_create_info.hpp>
Public Member Functions | |
CreateInfoShaderSources (const char *vertexShaderSourceCode, const char *fragmentShaderSourceCode) | |
Construct a create info structure for shader program creation from vertex and fragment shader source code. | |
Public Member Functions inherited from kanzi::ShaderProgram::CreateInfo | |
void | addBinaryShader (ShaderType type, ConstByteSpan binary) |
Adds a binary shader to the program. | |
void | addFixedUniform (string_view name) |
Adds a fixed uniform to a shader. | |
void | addFixedUniform (string_view name, ShaderProgram::FixedUniform uniform) |
Adds a fixed uniform to a shader. | |
void | addFixedUniform (string_view name, ShaderProgram::FixedUniform uniform, ShaderProgram::UniformTransformation transformation) |
Adds a fixed uniform to a shader. | |
void | addFixedUniform (string_view name, ShaderProgram::UniformTransformation transformation) |
Adds a fixed uniform to a shader. | |
void | addSourceShader (ShaderType type, const char *source) |
Adds a source shader to the program. | |
void | addSourceShader (ShaderType type, string_view source) |
Adds a source shader to the program. | |
void | addUniform (AbstractPropertyType propertyType) |
Adds a property type uniform to shader. | |
void | addUniform (AbstractPropertyType propertyType, PropertyDataType dataType, unsigned int elementCount) |
Adds a property type uniform to shader. | |
void | addUniform (AbstractPropertyType propertyType, PropertyDataType dataType, unsigned int elementCount, ShaderProgram::UniformTransformation transformation) |
Adds a property type uniform to shader. | |
void | addUniform (AbstractPropertyType propertyType, ShaderProgram::UniformTransformation transformation) |
Adds a property type uniform to shader. | |
void | addUniform (string_view name, PropertyDataType dataType, unsigned int elementCount, optional< AbstractPropertyType > propertyType, UniformBindingType bindingType, optional< FixedUniform > fixedOperation, FixedUniformFunction func, UniformTransformation transform) |
Adds an uniform to shader. | |
void | addUniformAndBinding (AbstractPropertyType propertyType) |
Adds a property type uniform to a shader and creates for that uniform a default render value binding. | |
void | addUniformAndBinding (AbstractPropertyType propertyType, ShaderProgram::UniformTransformation transformation) |
Adds a property type uniform to a shader with a given uniform transformation and creates for that uniform a default render value binding. | |
CreateInfo () | |
Constructs empty create info structure for shader program creation. | |
Status | validate (const Renderer &renderer) const |
Perform validation of shader creation parameters. | |
Additional Inherited Members | |
Public Types inherited from kanzi::ShaderProgram::CreateInfo | |
using | BindingContainer |
Binding container type. | |
using | BindingInfo |
Binding info. | |
enum | Status { StatusUnsupportedFormat , StatusCompileError , StatusLinkError , StatusInvalidAttributeLocation , StatusMissingShaderStage , StatusValid } |
Status tells if shader creation parameters can be used to create a shader. More... | |
Public Attributes inherited from kanzi::ShaderProgram::CreateInfo | |
BindingContainer | bindings |
Bindings. | |
bool | blendingControl |
Indicates whether ShaderProgram created from this createInfo should be able to change blending mode. | |
vector< byte > | combinedShaderBinaryData |
Combined shader binary data. | |
unsigned int | combinedShaderBinaryFormat |
Format for combined shader binary. | |
vector< byte > | programBinaryData |
Program binary data. | |
unsigned int | programBinaryFormat |
Format for program binary. | |
unsigned int | separateShaderBinaryFormat |
Format for separate shader binaries. | |
vector< BinaryShaderStage > | shaderBinaries |
All shader stages in binary format. | |
vector< ShaderStage > | shaderSources |
All shader stages in source code format. | |
UniformContainer | uniforms |
Uniforms. | |
ShaderAttributeCollection | vertexFormat |
Shader vertex attributes. | |
ShaderProgram creation parameters for initialized from shader source code strings.
|
explicit |
Construct a create info structure for shader program creation from vertex and fragment shader source code.
vertexShaderSourceCode | Source code for vertex shader. |
fragmentShaderSourceCode | Source code for fragment shader. |