public class AMDFramebufferMultisampleAdvanced
extends java.lang.Object
This extension extends ARB_framebuffer_object by allowing compromises between image quality and memory footprint of multisample antialiasing.
ARB_framebuffer_object introduced RenderbufferStorageMultisample as a method of defining the parameters for a multisample render buffer.
This function takes a samples parameter that has strict requirements on behavior such that no compromises in the final image quality are
allowed. Additionally, ARB_framebuffer_object requires that all framebuffer attachments have the same number of samples.
This extension extends ARB_framebuffer_object by providing a new function, RenderbufferStorageMultisampleAdvancedAMD, that distinguishes
between samples and storage samples for color renderbuffers where the number of storage samples can be less than the number of samples. This extension
also allows non-matching sample counts between color and depth/stencil renderbuffers.
This extension does not require any specific combination of sample counts to be supported.
Requires GLES30.
| Modifier and Type | Field and Description |
|---|---|
static int |
GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD
Accepted by the
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev. |
static int |
GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD
Accepted by the
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev. |
static int |
GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD
Accepted by the
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev. |
static int |
GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD
Accepted by the
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev. |
static int |
GL_RENDERBUFFER_STORAGE_SAMPLES_AMD
Accepted by the
pname parameter of GetRenderbufferParameteriv. |
static int |
GL_SUPPORTED_MULTISAMPLE_MODES_AMD
Accepted by the
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev. |
| Modifier and Type | Method and Description |
|---|---|
static void |
glNamedRenderbufferStorageMultisampleAdvancedAMD(int renderbuffer,
int samples,
int storageSamples,
int internalformat,
int width,
int height) |
static void |
glRenderbufferStorageMultisampleAdvancedAMD(int target,
int samples,
int storageSamples,
int internalformat,
int width,
int height) |
public static final int GL_RENDERBUFFER_STORAGE_SAMPLES_AMD
pname parameter of GetRenderbufferParameteriv.public static final int GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev.public static final int GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev.public static final int GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev.public static final int GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev.public static final int GL_SUPPORTED_MULTISAMPLE_MODES_AMD
pname parameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv, GetDoublev.public static void glRenderbufferStorageMultisampleAdvancedAMD(int target,
int samples,
int storageSamples,
int internalformat,
int width,
int height)
public static void glNamedRenderbufferStorageMultisampleAdvancedAMD(int renderbuffer,
int samples,
int storageSamples,
int internalformat,
int width,
int height)
Copyright LWJGL. All Rights Reserved. License terms.