Package | flare.flsl |
Class | public class FLSLDisassembler |
Inheritance | FLSLDisassembler ![]() ![]() |
Method | Defined By | ||
---|---|---|---|
print(vtx:ByteArray, frg:ByteArray):String [static]
Returns both, vertex and fragment codes as a string value. | FLSLDisassembler | ||
printFragment(bytes:ByteArray):String [static]
Returns only vertex shader as a string value. | FLSLDisassembler | ||
printVertex(bytes:ByteArray):String [static]
Returns only vertex shader as a string value. | FLSLDisassembler |
() | method |
public static function print(vtx:ByteArray, frg:ByteArray):String
Returns both, vertex and fragment codes as a string value.
Parameters
vtx:ByteArray — The vertex binary AGAL code.
| |
frg:ByteArray — The fragment binary AGAL code.
|
String — A string with the vertex and fragment shaders.
|
printFragment | () | method |
public static function printFragment(bytes:ByteArray):String
Returns only vertex shader as a string value.
Parameters
bytes:ByteArray — The fragment binary AGAL code.
|
String — A string with the fragment shader.
|
printVertex | () | method |
public static function printVertex(bytes:ByteArray):String
Returns only vertex shader as a string value.
Parameters
bytes:ByteArray — The vertex binary AGAL code.
|
String — A string with the vertex shader.
|