Package org.lwjgl.stb
Class STBDXT
java.lang.Object
org.lwjgl.stb.STBDXT
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
nstb_compress_bc4_block
(long dest, long src_r_one_byte_per_pixel) void stb_compress_bc4_block(unsigned char * dest, unsigned char const * src_r_one_byte_per_pixel)
static void
nstb_compress_bc5_block
(long dest, long src_rg_two_byte_per_pixel) void stb_compress_bc5_block(unsigned char * dest, unsigned char const * src_rg_two_byte_per_pixel)
static void
nstb_compress_dxt_block
(long dest, long src_rgba_four_bytes_per_pixel, int alpha, int mode) void stb_compress_dxt_block(unsigned char * dest, unsigned char const * src_rgba_four_bytes_per_pixel, int alpha, int mode)
static void
stb_compress_bc4_block
(ByteBuffer dest, ByteBuffer src_r_one_byte_per_pixel) void stb_compress_bc4_block(unsigned char * dest, unsigned char const * src_r_one_byte_per_pixel)
static void
stb_compress_bc5_block
(ByteBuffer dest, ByteBuffer src_rg_two_byte_per_pixel) void stb_compress_bc5_block(unsigned char * dest, unsigned char const * src_rg_two_byte_per_pixel)
static void
stb_compress_dxt_block
(ByteBuffer dest, ByteBuffer src_rgba_four_bytes_per_pixel, boolean alpha, int mode) void stb_compress_dxt_block(unsigned char * dest, unsigned char const * src_rgba_four_bytes_per_pixel, int alpha, int mode)
-
Field Details
-
STB_DXT_NORMAL
public static final int STB_DXT_NORMAL- See Also:
-
STB_DXT_DITHER
public static final int STB_DXT_DITHER- See Also:
-
STB_DXT_HIGHQUAL
public static final int STB_DXT_HIGHQUAL- See Also:
-
-
Method Details
-
nstb_compress_dxt_block
public static void nstb_compress_dxt_block(long dest, long src_rgba_four_bytes_per_pixel, int alpha, int mode) void stb_compress_dxt_block(unsigned char * dest, unsigned char const * src_rgba_four_bytes_per_pixel, int alpha, int mode)
-
stb_compress_dxt_block
public static void stb_compress_dxt_block(ByteBuffer dest, ByteBuffer src_rgba_four_bytes_per_pixel, boolean alpha, int mode) void stb_compress_dxt_block(unsigned char * dest, unsigned char const * src_rgba_four_bytes_per_pixel, int alpha, int mode)
-
nstb_compress_bc4_block
public static void nstb_compress_bc4_block(long dest, long src_r_one_byte_per_pixel) void stb_compress_bc4_block(unsigned char * dest, unsigned char const * src_r_one_byte_per_pixel)
-
stb_compress_bc4_block
void stb_compress_bc4_block(unsigned char * dest, unsigned char const * src_r_one_byte_per_pixel)
-
nstb_compress_bc5_block
public static void nstb_compress_bc5_block(long dest, long src_rg_two_byte_per_pixel) void stb_compress_bc5_block(unsigned char * dest, unsigned char const * src_rg_two_byte_per_pixel)
-
stb_compress_bc5_block
void stb_compress_bc5_block(unsigned char * dest, unsigned char const * src_rg_two_byte_per_pixel)
-