Package | Description |
---|---|
org.lwjgl.opengl |
Modifier and Type | Method | Description |
---|---|---|
PixelFormat |
PixelFormat.withAccumulationAlpha(int accum_alpha) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new alpha bits in the accumulation buffer value.
|
PixelFormat |
PixelFormat.withAccumulationBitsPerPixel(int accum_bpp) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new bits per pixel in the accumulation buffer value.
|
PixelFormat |
PixelFormat.withAlphaBits(int alpha) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new alpha bits value.
|
PixelFormat |
PixelFormat.withAuxBuffers(int num_aux_buffers) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new auxiliary buffers value.
|
PixelFormat |
PixelFormat.withBitsPerPixel(int bpp) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new bits per pixel value.
|
PixelFormat |
PixelFormat.withCoverageSamples(int colorSamples) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new color samples values.
|
PixelFormat |
PixelFormat.withCoverageSamples(int colorSamples,
int coverageSamples) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new color samples
and coverage samples values.
|
PixelFormat |
PixelFormat.withDepthBits(int depth) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new depth bits value.
|
PixelFormat |
PixelFormat.withFloatingPoint(boolean floating_point) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new floating point value.
|
PixelFormat |
PixelFormat.withFloatingPointPacked(boolean floating_point_packed) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new packed floating point value.
|
PixelFormat |
PixelFormat.withSamples(int samples) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new samples value.
|
PixelFormat |
PixelFormat.withSRGB(boolean sRGB) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new sRGB value.
|
PixelFormat |
PixelFormat.withStencilBits(int stencil) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new stencil bits value.
|
PixelFormat |
PixelFormat.withStereo(boolean stereo) |
Returns a new PixelFormat object with the same properties as this PixelFormat and the new stereo value.
|
Modifier and Type | Method | Description |
---|---|---|
static void |
Display.create(PixelFormat pixel_format) |
Create the OpenGL context with the given minimum parameters.
|
static void |
Display.create(PixelFormat pixel_format,
ContextAttribs attribs) |
Create the OpenGL context with the given minimum parameters.
|
static void |
Display.create(PixelFormat pixel_format,
Drawable shared_drawable) |
Create the OpenGL context with the given minimum parameters.
|
static void |
Display.create(PixelFormat pixel_format,
Drawable shared_drawable,
ContextAttribs attribs) |
Create the OpenGL context with the given minimum parameters.
|
Constructor | Description |
---|---|
AWTGLCanvas(GraphicsDevice device,
PixelFormat pixel_format) |
Create an AWTGLCanvas with the requested PixelFormat on the default GraphicsDevice.
|
AWTGLCanvas(GraphicsDevice device,
PixelFormat pixel_format,
Drawable drawable) |
Create an AWTGLCanvas with the requested PixelFormat on the specified GraphicsDevice.
|
AWTGLCanvas(GraphicsDevice device,
PixelFormat pixel_format,
Drawable drawable,
ContextAttribs attribs) |
Create an AWTGLCanvas with the requested PixelFormat on the specified GraphicsDevice.
|
AWTGLCanvas(PixelFormat pixel_format) |
Create an AWTGLCanvas with the requested PixelFormat on the default GraphicsDevice.
|
Pbuffer(int width,
int height,
PixelFormat pixel_format,
Drawable shared_drawable) |
Create an instance of a Pbuffer with a unique OpenGL context.
|
Pbuffer(int width,
int height,
PixelFormat pixel_format,
RenderTexture renderTexture,
Drawable shared_drawable) |
Create an instance of a Pbuffer with a unique OpenGL context.
|
Pbuffer(int width,
int height,
PixelFormat pixel_format,
RenderTexture renderTexture,
Drawable shared_drawable,
ContextAttribs attribs) |
Create an instance of a Pbuffer with a unique OpenGL context.
|
Copyright © 2002-2009 lwjgl.org. All Rights Reserved.