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

info.laht.threekt.renderers.GLMultisampleRenderTarget.kt Maven / Gradle / Ivy

The newest version!
package info.laht.threekt.renderers

class GLMultisampleRenderTarget(
    width: Int,
    height: Int,
    options: Options? = null
) : GLRenderTarget(width, height, options) {

    var samples = 4

    fun copy(source: GLMultisampleRenderTarget): GLMultisampleRenderTarget {
        super.copy(source)
        samples = source.samples
        return this
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy