123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package flash.display3D;
- extern final class Context3D extends flash.events.EventDispatcher {
- @:flash.property var backBufferHeight(get,never) : Int;
- @:flash.property var backBufferWidth(get,never) : Int;
- @:flash.property var driverInfo(get,never) : String;
- @:flash.property var enableErrorChecking(get,set) : Bool;
- @:flash.property var maxBackBufferHeight(get,set) : Int;
- @:flash.property var maxBackBufferWidth(get,set) : Int;
- @:flash.property @:require(flash12) var profile(get,never) : String;
- @:flash.property var totalGPUMemory(get,never) : Float;
- function clear(red : Float = 0, green : Float = 0, blue : Float = 0, alpha : Float = 1, depth : Float = 1, stencil : UInt = 0, mask : UInt = 0xFFFFFFFF) : Void;
- function configureBackBuffer(width : Int, height : Int, antiAlias : Int, enableDepthAndStencil : Bool = true, wantsBestResolution : Bool = false, wantsBestResolutionOnBrowserZoom : Bool = false) : Void;
- function createCubeTexture(size : Int, format : Context3DTextureFormat, optimizeForRenderToTexture : Bool, streamingLevels : Int = 0) : flash.display3D.textures.CubeTexture;
- function createIndexBuffer(numIndices : Int, ?bufferUsage : Context3DBufferUsage) : IndexBuffer3D;
- function createProgram() : Program3D;
- @:require(flash11_8) function createRectangleTexture(width : Int, height : Int, format : Context3DTextureFormat, optimizeForRenderToTexture : Bool) : flash.display3D.textures.RectangleTexture;
- function createTexture(width : Int, height : Int, format : Context3DTextureFormat, optimizeForRenderToTexture : Bool, streamingLevels : Int = 0) : flash.display3D.textures.Texture;
- function createVertexBuffer(numVertices : Int, data32PerVertex : Int, ?bufferUsage : Context3DBufferUsage) : VertexBuffer3D;
- function createVideoTexture() : flash.display3D.textures.VideoTexture;
- function dispose(recreate : Bool = true) : Void;
- function drawToBitmapData(destination : flash.display.BitmapData) : Void;
- function drawTriangles(indexBuffer : IndexBuffer3D, firstIndex : Int = 0, numTriangles : Int = -1) : Void;
- private function get_backBufferHeight() : Int;
- private function get_backBufferWidth() : Int;
- private function get_driverInfo() : String;
- private function get_enableErrorChecking() : Bool;
- private function get_maxBackBufferHeight() : Int;
- private function get_maxBackBufferWidth() : Int;
- private function get_profile() : String;
- private function get_totalGPUMemory() : Float;
- function present() : Void;
- function setBlendFactors(sourceFactor : Context3DBlendFactor, destinationFactor : Context3DBlendFactor) : Void;
- function setColorMask(red : Bool, green : Bool, blue : Bool, alpha : Bool) : Void;
- function setCulling(triangleFaceToCull : Context3DTriangleFace) : Void;
- function setDepthTest(depthMask : Bool, passCompareMode : Context3DCompareMode) : Void;
- function setProgram(program : Program3D) : Void;
- @:require(flash11_2) function setProgramConstantsFromByteArray(programType : Context3DProgramType, firstRegister : Int, numRegisters : Int, data : flash.utils.ByteArray, byteArrayOffset : UInt) : Void;
- function setProgramConstantsFromMatrix(programType : Context3DProgramType, firstRegister : Int, matrix : flash.geom.Matrix3D, transposedMatrix : Bool = false) : Void;
- function setProgramConstantsFromVector(programType : Context3DProgramType, firstRegister : Int, data : flash.Vector<Float>, numRegisters : Int = -1) : Void;
- function setRenderToBackBuffer() : Void;
- function setRenderToTexture(texture : flash.display3D.textures.TextureBase, enableDepthAndStencil : Bool = false, antiAlias : Int = 0, surfaceSelector : Int = 0, colorOutputIndex : Int = 0) : Void;
- @:require(flash11_6) function setSamplerStateAt(sampler : Int, wrap : Context3DWrapMode, filter : Context3DTextureFilter, mipfilter : Context3DMipFilter) : Void;
- function setScissorRectangle(rectangle : flash.geom.Rectangle) : Void;
- function setStencilActions(?triangleFace : Context3DTriangleFace, ?compareMode : Context3DCompareMode, ?actionOnBothPass : Context3DStencilAction, ?actionOnDepthFail : Context3DStencilAction, ?actionOnDepthPassStencilFail : Context3DStencilAction) : Void;
- function setStencilReferenceValue(referenceValue : UInt, readMask : UInt = 255, writeMask : UInt = 255) : Void;
- function setTextureAt(sampler : Int, texture : flash.display3D.textures.TextureBase) : Void;
- function setVertexBufferAt(index : Int, buffer : VertexBuffer3D, bufferOffset : Int = 0, ?format : Context3DVertexBufferFormat) : Void;
- private function set_enableErrorChecking(value : Bool) : Bool;
- private function set_maxBackBufferHeight(value : Int) : Int;
- private function set_maxBackBufferWidth(value : Int) : Int;
- @:flash.property static var supportsVideoTexture(get,never) : Bool;
- private static function get_supportsVideoTexture() : Bool;
- }
|