Package com.jme3.system.lwjgl
Class LwjglContext
java.lang.Object
com.jme3.system.lwjgl.LwjglContext
- All Implemented Interfaces:
JmeContext
- Direct Known Subclasses:
LwjglWindow
A LWJGL implementation of a graphics context.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.jme3.system.JmeContext
JmeContext.Type -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final booleanprotected LwjglContextprotected final AtomicBooleanprotected final Objectprotected GlfwJoystickInputprotected GlfwKeyInputprotected SystemListenerprotected GlfwMouseInputprotected final AtomicBooleanprotected Rendererprotected final AppSettingsprotected Timer -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcreate()voiddestroy()protected intprotected intAccesses the listener that receives events related to this context.getTimer()protected voidInitializes the LWJGL renderer and input for the first time.protected voidinitOpenCL(long window) voidvoidbooleanbooleanprotected voidprotected voidReinitializes the relevant details of the context.voidsetSettings(AppSettings settings) voidsetSystemListener(SystemListener listener) Sets the listener that will receive events relating to context creation, update, and destroy.protected voidwaitFor(boolean createdVal) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.jme3.system.JmeContext
create, destroy, getDisplays, getFramebufferHeight, getFramebufferWidth, getJoyInput, getKeyInput, getMouseInput, getPrimaryDisplay, getTouchInput, getType, getWindowXPosition, getWindowYPosition, onRenderManagerReady, restart, setAutoFlushFrames, setTitle
-
Field Details
-
CL_GL_SHARING_POSSIBLE
public static final boolean CL_GL_SHARING_POSSIBLE- See Also:
-
createdLock
-
created
-
renderable
-
settings
-
keyInput
-
mouseInput
-
joyInput
-
timer
-
renderer
-
listener
-
clContext
-
-
Constructor Details
-
LwjglContext
public LwjglContext()
-
-
Method Details
-
getSystemListener
Accesses the listener that receives events related to this context.- Specified by:
getSystemListenerin interfaceJmeContext- Returns:
- the pre-existing instance
-
setSystemListener
Description copied from interface:JmeContextSets the listener that will receive events relating to context creation, update, and destroy.- Specified by:
setSystemListenerin interfaceJmeContext- Parameters:
listener- the desired listener
-
printContextInitInfo
protected void printContextInitInfo() -
determineMaxSamples
protected int determineMaxSamples() -
getNumSamplesToUse
protected int getNumSamplesToUse() -
reinitContext
protected void reinitContext()Reinitializes the relevant details of the context. For internal use only. -
initContextFirstTime
protected void initContextFirstTime()Initializes the LWJGL renderer and input for the first time. For internal use only. -
initOpenCL
protected void initOpenCL(long window) -
internalDestroy
public void internalDestroy() -
internalCreate
public void internalCreate() -
create
public void create() -
destroy
public void destroy() -
waitFor
protected void waitFor(boolean createdVal) -
isCreated
public boolean isCreated()- Specified by:
isCreatedin interfaceJmeContext- Returns:
- True if the context has been created but not yet destroyed.
-
isRenderable
public boolean isRenderable()- Specified by:
isRenderablein interfaceJmeContext- Returns:
- True if the context contains a valid render surface,
if any of the rendering methods in
Rendererare called while this isfalse, then the result is undefined.
-
setSettings
- Specified by:
setSettingsin interfaceJmeContext- Parameters:
settings- the display settings to use for the created context. If the context has already been created, thenrestart()must be called for the changes to be applied.
-
getSettings
- Specified by:
getSettingsin interfaceJmeContext- Returns:
- The current display settings. Note that they might be different from the ones set with setDisplaySettings() if the context was restarted or the settings changed internally.
-
getRenderer
- Specified by:
getRendererin interfaceJmeContext- Returns:
- The renderer for this context, or null if not created yet.
-
getTimer
- Specified by:
getTimerin interfaceJmeContext- Returns:
- The timer for this context, or null if not created yet.
-
getOpenCLContext
- Specified by:
getOpenCLContextin interfaceJmeContext- Returns:
- The OpenCL context if available.
-