67 lines
2.3 KiB
Haxe
67 lines
2.3 KiB
Haxe
|
package kha;
|
||
|
|
||
|
import haxe.io.Bytes;
|
||
|
import kha.graphics4.DepthStencilFormat;
|
||
|
import kha.graphics4.TextureFormat;
|
||
|
import kha.graphics4.Usage;
|
||
|
|
||
|
extern class Image implements Canvas implements Resource {
|
||
|
public static function create(width: Int, height: Int, format: TextureFormat = TextureFormat.RGBA32, usage: Usage = Usage.StaticUsage,
|
||
|
readable: Bool = false): Image;
|
||
|
|
||
|
public static function create3D(width: Int, height: Int, depth: Int, format: TextureFormat = TextureFormat.RGBA32, usage: Usage = Usage.StaticUsage,
|
||
|
readable: Bool = false): Image;
|
||
|
|
||
|
public static function fromBytes(bytes: Bytes, width: Int, height: Int, format: TextureFormat = TextureFormat.RGBA32, usage: Usage = Usage.StaticUsage,
|
||
|
readable: Bool = false): Image;
|
||
|
|
||
|
public static function fromBytes3D(bytes: Bytes, width: Int, height: Int, depth: Int, format: TextureFormat = TextureFormat.RGBA32,
|
||
|
usage: Usage = Usage.StaticUsage, readable: Bool = false): Image;
|
||
|
|
||
|
public static function fromEncodedBytes(bytes: Bytes, fileExtention: String, doneCallback: Image->Void, errorCallback: String->Void,
|
||
|
readable: Bool = false): Void;
|
||
|
|
||
|
public static function fromVideo(video: Video): Image;
|
||
|
|
||
|
public static function createRenderTarget(width: Int, height: Int, format: TextureFormat = TextureFormat.RGBA32,
|
||
|
depthStencil: DepthStencilFormat = NoDepthAndStencil, antiAliasingSamples: Int = 1): Image;
|
||
|
|
||
|
public static var maxSize(get, null): Int;
|
||
|
|
||
|
public static var nonPow2Supported(get, null): Bool;
|
||
|
|
||
|
public function isOpaque(x: Int, y: Int): Bool;
|
||
|
|
||
|
public function unload(): Void;
|
||
|
|
||
|
public function lock(level: Int = 0): Bytes;
|
||
|
|
||
|
public function unlock(): Void;
|
||
|
|
||
|
public function getPixels(): Bytes;
|
||
|
|
||
|
public function generateMipmaps(levels: Int): Void;
|
||
|
|
||
|
public function setMipmaps(mipmaps: Array<Image>): Void;
|
||
|
|
||
|
public function setDepthStencilFrom(image: Image): Void;
|
||
|
|
||
|
public function clear(x: Int, y: Int, z: Int, width: Int, height: Int, depth: Int, color: Color): Void;
|
||
|
|
||
|
public var width(get, null): Int;
|
||
|
|
||
|
public var height(get, null): Int;
|
||
|
|
||
|
public var depth(get, null): Int;
|
||
|
|
||
|
public var format(get, null): TextureFormat;
|
||
|
|
||
|
public var realWidth(get, null): Int;
|
||
|
|
||
|
public var realHeight(get, null): Int;
|
||
|
|
||
|
public var g2(get, null): kha.graphics2.Graphics;
|
||
|
|
||
|
public var g4(get, null): kha.graphics4.Graphics;
|
||
|
}
|