mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-18 22:50:33 +01:00
25 lines
499 B
Java
25 lines
499 B
Java
|
|
package org.lwjgl.opengl;
|
|||
|
|
|
|||
|
|
import org.lwjgl.LWJGLException;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @author Spasi
|
|||
|
|
* @since 23 <EFBFBD><EFBFBD><EFBFBD> 2010
|
|||
|
|
*/
|
|||
|
|
interface DrawableLWJGL extends Drawable {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* [INTERNAL USE ONLY] Returns the Drawable's Context.
|
|||
|
|
*
|
|||
|
|
* @return the Drawable's Context
|
|||
|
|
*/
|
|||
|
|
Context getContext();
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* [INTERNAL USE ONLY] Creates a new Context that is shared with the Drawable's Context.
|
|||
|
|
*
|
|||
|
|
* @return a Context shared with the Drawable's Context.
|
|||
|
|
*/
|
|||
|
|
Context createSharedContext() throws LWJGLException;
|
|||
|
|
|
|||
|
|
}
|