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

commonMain.org.openrndr.draw.ProgramRenderTarget.kt Maven / Gradle / Ivy

The newest version!
package org.openrndr.draw

import org.openrndr.Program

/**
 * A render target that wraps around the back-buffer
 */
interface ProgramRenderTarget : RenderTarget {
    val program: Program
    override val width get() = program.width
    override val height get() = program.height
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy