Objects::Components::ShaderArgument
Shader Arguments in Unified Engine
Within the Unified Engine
, the shader arguments are vital for sending data to the GPU shaders. These arguments could range from primitive data types to complex data structures like matrices. The engine provides tools to handle these arguments efficiently.
Shader Argument Types Enumeration
This enumeration represents various data types that can be sent as arguments to shaders.
Shader Arguments Structure
A structure that encapsulates all the necessary details about the data to be sent as an argument to the shader. It includes the pointer to the actual data, the type of the data, and the variable's name (or uniform name) within the shader.
Last updated