Stage3D (codenamedMolehill[1]) is an AdobeFlash PlayerAPI for rendering interactive 3D graphics with GPU-acceleration, within Flash games and applications. Flash Player or AIR applications written in ActionScript 3 may use Stage3D to render 3D graphics,[2] and such applications run natively on Windows, Mac OS X, Linux, Apple iOS and Google Android.[3] Stage3D is similar in purpose and design to WebGL.[4][5]
Stage3D was introduced in Adobe Flash Player 11.0 and AIR 3.0 in order to facilitate GPU-acceleration of 3D content in Flash applications[1][6] In Flash Player 10 and earlier, 3D Flash applications had to render 3D graphics completely on the CPU. Flash Player 10 supported a limited form of GPU acceleration support for materials, in an API called Pixel Bender.[1][7]
Because Stage3D is a low-level library that may be tedious to use directly, it has seen some higher-level 3D and 2D libraries built on top of it in order to benefit from the higher performance that it provides. An incomplete list of libraries and game engines using it includes: Unreal Engine 3,[10][11]Away3D 4,[5]CopperCube,[12]Flare3D,[13]Starling,[14]: vii ND2D or Adobe Labs' Proscenium.[15] Similarly, WebGL 3D applications may be built with three.js, a higher-level library similar to these.[5] Away3D and Starling have been christened as official components of the Adobe Gaming SDK.[16][17]
History
In 2011, Flash Player 11 was released, and with it the first version of Stage3D, allowing for GPU-accelerated 3D rendering for Flash applications and games, on desktop platforms such as Microsoft Windows and Mac OS X.[1]
In March 2012, Flash Player 11.2 was released, which enabled Stage3D/GPU support on Android and iOS platforms. Games utilizing Stage3D APIs would work with no changes on these mobile platforms.[18]
In June 2012, Flash Player 11.3 was released, enabling progressive streaming of Stage3D texture maps, allowing for faster performance and startup times for games and applications utilizing Stage3D.[18]
In August 2012, Flash Player 11.4 was released, which raised the supported hardware-accelerated video cards count to 2006, and allowed alpha-channels for Stage3D compressed textures.[18]
In March 2012, Adobe announced that Stage3D will be part of the premium features of the Flash Player (stating with Flash Player version 11.2), and thus not available completely free of charge to developers, but based on a revenue sharing scheme.[19][20] Various notable members of the Flash community objected to the change, referring to it as a "speed-tax".[19]
In January 2013, Adobe classified all premium features as general availability, and could be freely used by Flash applications, without requiring a license or royalty from developers or publishers.[2]
In September 2012, Flash Player 11.4 was released allowing games to target "constrained profiles" which included older graphics chips, that did not support all the features of Stage3D.[21]
In April 2013, Flash Player 11.7 was released, which supported 16-bit texture maps for Stage3D content, which allowed reduced memory usage and improved memory management.[18]
In July 2013, Flash Player 11.8 was released, which increased the maximum texture map size to 4096 x 4096, in addition to supporting rectangular (non-square) texture maps for Stage3D content. This allowed for greater detail in texture maps, and larger texture atlases to be created enabling better performance.[18]
As of 2014, GPU acceleration was removed in Flash Player 11.8 onwards for Pixel Bender scripts. Pixel Bender was an older technology for writing high-performance CPU-based image processing filters. This disrupted a number of less well-endowed projects, including MIT's Scratch, which could not find the manpower to rapidly recode their applications.[22][23]
Accelerated GPU Rendering - Integrated support for graphic cards built by NVidia, AMD and Intel,[3] Blacklist for incompatible graphic cards.
Accelerated CPU Rendering - Integrated software renderer fallback using SwiftShader, for systems with missing/incompatible graphics cards.
AGAL (Adobe Graphics Assembly Language) - A language for writing Shaders (programs that run on the GPU) such that they can be converted to OpenGL GLSL Shaders and DirectX HLSL Shaders by Flash Player.
ATF (Adobe Texture Format) - A texture format such that textures can be converted to appropriate platform-specific texture formats such as DXT on Windows and MacOS, PVRTC on iOS.[14]: 47–48 [24]
Stage3D is supported by the following components:
XC APIs - the "premium features" for Flash Player, consisting of high-speed memory manipulation opcodes (known as "Alchemy") and Stage3D APIs.
CrossBridge - A cross-compilation toolkit to compile OpenGL-based 3D games or game engines to run within Flash Player.
Adobe Scout - A visual profiler for Flash content running on desktop or mobile. Scout enables in-depth profiling of Stage3D content with the following integrated features:[25]
Stage3D Preview - View the current back-buffer of executed Stage3D Content[25]
Stage3D Recording - Capture every Stage3D command executed by the Flash content, and replay/step through executed commands[25]
GPU memory usage - Profile texture memory usage with a real-time breakdown[25]
Stage3D Program Editor - Interactively modify recorded Stage3D commands and see what effect this has on rendering. Edit the AGAL code for the vertex and fragment programs executed by each draw call.[25]
When porting C++3D video games for playback in Adobe Flash Player, developers must translate traditional HLSL and GLSL shaders into AGAL.[31] The C++ video game code can be converted into Flash-compatible code using CrossBridge.