All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.opengl.INTELFramebufferCMAA Maven / Gradle / Ivy

Go to download

The most widely adopted 2D and 3D graphics API in the industry, bringing thousands of applications to a wide variety of computer platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.opengl;

import org.lwjgl.system.*;

/**
 * Native bindings to the INTEL_framebuffer_CMAA extension.
 * 
 * 

Multisampling is a mechanism to antialias all GL primitives and is part of the GL specification.

* *

Better visual quality can be achieved by applying multisampling. However, on certain platforms it comes at a high performance cost. In general, the * greater number of samples per pixel, the bigger the cost.

* *

Conservative Morphological Anti-Aliasing (CMAA) is an alternative approach to antialiasing, which operates on the final image. This post processing * technique results in image quality comparable to multisampling at much lower cost and better performance.

* *

This extension incorporates an optimized CMAA algorithm implementation into the GL implementation.

* *

For more information on CMAA refer to software.intel.com.

* *

Requires {@link GL30 OpenGL 3.0}.

*/ public class INTELFramebufferCMAA { static { GL.initialize(); } protected INTELFramebufferCMAA() { throw new UnsupportedOperationException(); } // --- [ glApplyFramebufferAttachmentCMAAINTEL ] --- /** * Requests the post processing of current draw buffers pertaining to the framebuffer bound to the {@link GL30#GL_DRAW_FRAMEBUFFER DRAW_FRAMEBUFFER} target according to the * Conservative Morphological Anti-Aliasing algorithm. */ public static native void glApplyFramebufferAttachmentCMAAINTEL(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy