Class QCOMShadingRate
- java.lang.Object
-
- org.lwjgl.opengles.QCOMShadingRate
-
public final class QCOMShadingRate extends java.lang.Object
Native bindings to the QCOM_shading_rate extension.By default, OpenGL runs a fragment shader once for each pixel covered by a primitive being rasterized. When using multisampling, the outputs of that fragment shader are broadcast to each covered sample of the fragment's pixel. When using multisampling, applications can optionally request that the fragment shader be run once per color sample (e.g., by using the "sample" qualifier on one or more active fragment shader inputs), or run a minimum number of times per pixel using SAMPLE_SHADING enable and the MinSampleShading frequency value.
This extension allows applications to specify fragment shading rates of less than 1 invocation per pixel. Instead of invoking the fragment shader once for each covered pixel, the fragment shader can be run once for a group of adjacent pixels in the framebuffer. The outputs of that fragment shader invocation are broadcast to each covered samples for all of the pixels in the group. The initial version of this extension allows for groups of 1, 2, 4, 8, and 16 pixels.
This can be useful for effects like motion volumetric rendering where a portion of scene is processed at full shading rate and a portion can be processed at a reduced shading rate, saving power and processing resources. The requested rate can vary from (finest and default) 1 fragment shader invocation per pixel to (coarsest) one fragment shader invocation for each 4x4 block of pixels. Implementations are given wide latitude to rasterize at the requested rate or any other rate that is less coarse.
-
-
Field Summary
Fields Modifier and Type Field Description static int
GL_SHADING_RATE_1X1_PIXELS_QCOM
GL_SHADING_RATE_1X2_PIXELS_QCOM
GL_SHADING_RATE_2X1_PIXELS_QCOM
GL_SHADING_RATE_2X2_PIXELS_QCOM
GL_SHADING_RATE_4X2_PIXELS_QCOM
GL_SHADING_RATE_4X4_PIXELS_QCOMAllowed in therate
parameter in ShadingRateQCOM.static int
GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM
Accepted by thecap
parameter of Enable, Disable, IsEnabled.static int
GL_SHADING_RATE_QCOM
Accepted by thepname
parameter of GetIntegerv, GetInterger64v and GetFloatv.
-
-
-
Field Detail
-
GL_SHADING_RATE_QCOM
Accepted by thepname
parameter of GetIntegerv, GetInterger64v and GetFloatv.
-
GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM
Accepted by thecap
parameter of Enable, Disable, IsEnabled.
-
GL_SHADING_RATE_1X1_PIXELS_QCOM, GL_SHADING_RATE_1X2_PIXELS_QCOM, GL_SHADING_RATE_2X1_PIXELS_QCOM, GL_SHADING_RATE_2X2_PIXELS_QCOM, GL_SHADING_RATE_4X2_PIXELS_QCOM, GL_SHADING_RATE_4X4_PIXELS_QCOM
Allowed in therate
parameter in ShadingRateQCOM.
-
-