Package | flash.display |
Class | public final class NativeWindowRenderMode |
Inheritance | NativeWindowRenderMode ![]() |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 3.0 |
renderMode
property of the
NativeWindowInitOptions object used to create a native window.
Note: The renderMode value is specified when a window is created and cannot be changed.
Related API Elements
Property | Defined By | ||
---|---|---|---|
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance. | Object |
Method | Defined By | ||
---|---|---|---|
![]() |
Indicates whether an object has a specified property defined. | Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() |
Indicates whether the specified property exists and is enumerable. | Object | |
![]() |
Sets the availability of a dynamic property for loop operations. | Object | |
![]() |
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
![]() |
Returns the string representation of the specified object. | Object | |
![]() |
Returns the primitive value of the specified object. | Object |
Constant | Defined By | ||
---|---|---|---|
AUTO : String = "auto" [static]
A typical window. | NativeWindowRenderMode | ||
CPU : String = "cpu" [static]
A cpu mode window. | NativeWindowRenderMode | ||
DIRECT : String = "direct" [static]
A direct mode window. | NativeWindowRenderMode | ||
GPU : String = "gpu" [static]
A gpu mode window. | NativeWindowRenderMode |
AUTO | Constant |
public static const AUTO:String = "auto"
Runtime Versions: | AIR 3.0 |
A typical window. The rendermode will be set to whatever is most appropriate on the underlying device. Compositing with StageVideo or Stage3D may or may not be supported. This is the default.
CPU | Constant |
public static const CPU:String = "cpu"
Runtime Versions: | AIR 3.0 |
A cpu mode window. Vectors are rendered using the software renderer and blitting is done with the CPU, so compositing with StageVideo or Stage3D is not supported.
Note: Currently, to specify this mode for a new NativeWindow, the <renderMode> tag in the application descriptor must be "cpu", "auto" or "direct", otherwise an IllegalOperationError exception will be thrown.
DIRECT | Constant |
public static const DIRECT:String = "direct"
Runtime Versions: | AIR 3.0 |
A direct mode window. Direct mode windows render vectors using the software renderer, but blit using the GPU to allow compositing with StageVideo or Stage3D.
Note: Currently, to specify this mode for a new NativeWindow, the <renderMode> tag in the application descriptor must be "cpu" or "auto" or "direct", otherwise an IllegalOperationError exception will be thrown.
GPU | Constant |
public static const GPU:String = "gpu"
Runtime Versions: | AIR 3.0 |
A gpu mode window. Vectors are rendered using the GPU and blitting is done with the GPU, so compositing with StageVideo or Stage3D is supported.
Note: Currently, to specify this mode for a new NativeWindow, the <renderMode> tag in the application descriptor must also be "gpu", otherwise an IllegalOperationError exception will be thrown.
Thu Dec 4 2014, 05:50 PM -08:00