Package io.github.libsdl4j.api.render
Class SDL_RendererInfo
- java.lang.Object
-
- com.sun.jna.Structure
-
- io.github.libsdl4j.api.render.SDL_RendererInfo
-
@FieldOrder({"name","flags","numTextureFormats","textureFormats","maxTextureWidth","maxTextureHeight"}) public final class SDL_RendererInfo extends com.sun.jna.Structure
Information on the capabilities of a render driver or context.
-
-
Field Summary
Fields Modifier and Type Field Description int
flags
SupportedSDL_RendererFlags
int
maxTextureHeight
The maximum texture heightint
maxTextureWidth
The maximum texture widthString
name
The name of the rendererint
numTextureFormats
The number of available texture formatsint[]
textureFormats
The available texture formats
-
Constructor Summary
Constructors Constructor Description SDL_RendererInfo()
SDL_RendererInfo(com.sun.jna.Pointer p)
-
Method Summary
-
Methods inherited from class com.sun.jna.Structure
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFieldOrder, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
-
-
-
-
Field Detail
-
name
public String name
The name of the renderer
-
flags
public int flags
SupportedSDL_RendererFlags
-
numTextureFormats
public int numTextureFormats
The number of available texture formats
-
textureFormats
public int[] textureFormats
The available texture formats
-
maxTextureWidth
public int maxTextureWidth
The maximum texture width
-
maxTextureHeight
public int maxTextureHeight
The maximum texture height
-
-