<--애드센스-->

LWJGL의 Disply 함수 표 

Method Summary

Methods 
Modifier and TypeMethod and Description
static voidcreate()
Create the OpenGL context.
static voidcreate(PixelFormat pixel_format)
Create the OpenGL context with the given minimum parameters.
static voidcreate(PixelFormat pixel_format, ContextAttribs attribs)
Create the OpenGL context with the given minimum parameters.
static voidcreate(PixelFormat pixel_format, Drawable shared_drawable)
Create the OpenGL context with the given minimum parameters.
static voidcreate(PixelFormat pixel_format, Drawable shared_drawable, ContextAttribs attribs)
Create the OpenGL context with the given minimum parameters.
static voidcreate(PixelFormatLWJGL pixel_format)
Create the OpenGL ES context with the given minimum parameters.
static voidcreate(PixelFormatLWJGL pixel_format, ContextAttribs attribs)
Create the OpenGL ES context with the given minimum parameters.
static voidcreate(PixelFormatLWJGL pixel_format, Drawable shared_drawable)
Create the OpenGL ES context with the given minimum parameters.
static voidcreate(PixelFormatLWJGL pixel_format, Drawable shared_drawable, ContextAttribs attribs)
Create the OpenGL ES context with the given minimum parameters.
static voiddestroy()
Destroy the Display.
static java.lang.StringgetAdapter()
Get the driver adapter string.
static DisplayMode[]getAvailableDisplayModes()
Returns the entire list of possible fullscreen display modes as an array, in no particular order.
static DisplayModegetDesktopDisplayMode()
Return the initial desktop display mode.
static DisplayModegetDisplayMode()
Return the current display mode, as set by setDisplayMode().
static DrawablegetDrawable()
Fetch the Drawable from the Display.
static intgetHeight() 
static java.awt.CanvasgetParent()
Return the last parent set with setParent().
static floatgetPixelScaleFactor() 
static java.lang.StringgetTitle() 
static java.lang.StringgetVersion()
Get the driver version.
static intgetWidth() 
static intgetX() 
static intgetY() 
static booleanisActive() 
static booleanisCloseRequested() 
static booleanisCreated() 
static booleanisCurrent()
Returns true if the Display's context is current in the current thread.
static booleanisDirty()
Determine if the window's contents have been damaged by external events.
static booleanisFullscreen() 
static booleanisResizable() 
static booleanisVisible() 
static voidmakeCurrent()
Make the Display the current rendering context for GL calls.
static voidprocessMessages()
Process operating system events.
static voidreleaseContext()
Release the Display context.
static voidsetDisplayConfiguration(float gamma, float brightness, float contrast)
Set the display configuration to the specified gamma, brightness and contrast.
static voidsetDisplayMode(DisplayMode mode)
Set the current display mode.
static voidsetDisplayModeAndFullscreen(DisplayMode mode)
Set the mode of the context.
static voidsetFullscreen(boolean fullscreen)
Set the fullscreen mode of the context.
static intsetIcon(java.nio.ByteBuffer[] icons)
Sets one or more icons for the Display.
static voidsetInitialBackground(float red, float green, float blue)
Set the initial color of the Display.
static voidsetLocation(int new_x, int new_y)
Set the window's location.
static voidsetParent(java.awt.Canvas parent)
Set the parent of the Display.
static voidsetResizable(boolean resizable)
Enable or disable the Display window to be resized.
static voidsetSwapInterval(int value)
Set the buffer swap interval.
static voidsetTitle(java.lang.String newTitle)
Set the title of the window.
static voidsetVSyncEnabled(boolean sync)
Enable or disable vertical monitor synchronization.
static voidswapBuffers()
Swap the display buffers.
static voidsync(int fps)
An accurate sync method that will attempt to run at a constant frame rate.
static voidupdate()
Update the window.
static voidupdate(boolean processMessages)
Update the window.
static booleanwasResized() 


'프로그래밍 > Java' 카테고리의 다른 글

[LWJGL]Input  (0) 2016.02.19
[LWJGL]Display  (0) 2016.02.19
2016/2/14  (0) 2016.02.14
프로젝트  (0) 2016.02.14
2016/2/12 Math.roundm,sqrt, 클래스변수와 인스턴스변수  (0) 2016.02.12

+ Recent posts