Ultralight C++ API 1.4.0
|
#include <Ultralight/platform/GPUDriver.h>
The state of the GPU for a given draw command.
This structure describes the current state of the GPU for a given draw command.
Public Attributes | |
uint32_t | viewport_width |
Viewport width in pixels. | |
uint32_t | viewport_height |
Viewport height in pixels. | |
Matrix4x4 | transform |
Transform matrix– you should multiply this with the screen-space orthographic projection matrix then pass to the vertex shader. | |
bool | enable_texturing |
Whether or not we should enable texturing for the current draw command. | |
bool | enable_blend |
Whether or not we should enable blending for the current draw command. | |
ShaderType | shader_type |
The vertex/pixel shader program pair to use for the current draw command. | |
uint32_t | render_buffer_id |
The render buffer to use for the current draw command. | |
uint32_t | texture_1_id |
The texture id to bind to slot #1. (Will be 0 if none) | |
uint32_t | texture_2_id |
The texture id to bind to slot #2. (Will be 0 if none) | |
uint32_t | texture_3_id |
The texture id to bind to slot #3. (Will be 0 if none) | |
float | uniform_scalar [8] |
The uniform scalars (passed to the pixel shader via uniforms). | |
vec4 | uniform_vector [8] |
The uniform vectors (passed to the pixel shader via uniforms). | |
uint8_t | clip_size |
The clip size (passed to the pixel shader via uniforms). | |
Matrix4x4 | clip [8] |
The clip stack (passed to the pixel shader via uniforms). | |
bool | enable_scissor |
Whether or not scissor testing should be used for the current draw command. | |
IntRect | scissor_rect |
The scissor rect to use for scissor testing (units in pixels) | |
Matrix4x4 clip[8] |
The clip stack (passed to the pixel shader via uniforms).
uint8_t clip_size |
The clip size (passed to the pixel shader via uniforms).
bool enable_blend |
Whether or not we should enable blending for the current draw command.
If blending is disabled, any drawn pixels should overwrite existing. This is mainly used so we can modify alpha values of the RenderBuffer during scissored clears.
bool enable_scissor |
Whether or not scissor testing should be used for the current draw command.
bool enable_texturing |
Whether or not we should enable texturing for the current draw command.
uint32_t render_buffer_id |
The render buffer to use for the current draw command.
IntRect scissor_rect |
The scissor rect to use for scissor testing (units in pixels)
ShaderType shader_type |
The vertex/pixel shader program pair to use for the current draw command.
uint32_t texture_1_id |
The texture id to bind to slot #1. (Will be 0 if none)
uint32_t texture_2_id |
The texture id to bind to slot #2. (Will be 0 if none)
uint32_t texture_3_id |
The texture id to bind to slot #3. (Will be 0 if none)
Matrix4x4 transform |
Transform matrix– you should multiply this with the screen-space orthographic projection matrix then pass to the vertex shader.
float uniform_scalar[8] |
The uniform scalars (passed to the pixel shader via uniforms).
vec4 uniform_vector[8] |
The uniform vectors (passed to the pixel shader via uniforms).
uint32_t viewport_height |
Viewport height in pixels.
uint32_t viewport_width |
Viewport width in pixels.