| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | /* * Copyright (C)2005-2015 Haxe Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */// This file is generated from mozilla/WebGLRenderingContext.webidl line 873:0. Do not edit!package js.html.webgl;@:native("WebGLExtensionDrawBuffers")extern class ExtensionDrawBuffers{	static inline var COLOR_ATTACHMENT0_WEBGL : Int = 36064;	static inline var COLOR_ATTACHMENT1_WEBGL : Int = 36065;	static inline var COLOR_ATTACHMENT2_WEBGL : Int = 36066;	static inline var COLOR_ATTACHMENT3_WEBGL : Int = 36067;	static inline var COLOR_ATTACHMENT4_WEBGL : Int = 36068;	static inline var COLOR_ATTACHMENT5_WEBGL : Int = 36069;	static inline var COLOR_ATTACHMENT6_WEBGL : Int = 36070;	static inline var COLOR_ATTACHMENT7_WEBGL : Int = 36071;	static inline var COLOR_ATTACHMENT8_WEBGL : Int = 36072;	static inline var COLOR_ATTACHMENT9_WEBGL : Int = 36073;	static inline var COLOR_ATTACHMENT10_WEBGL : Int = 36074;	static inline var COLOR_ATTACHMENT11_WEBGL : Int = 36075;	static inline var COLOR_ATTACHMENT12_WEBGL : Int = 36076;	static inline var COLOR_ATTACHMENT13_WEBGL : Int = 36077;	static inline var COLOR_ATTACHMENT14_WEBGL : Int = 36078;	static inline var COLOR_ATTACHMENT15_WEBGL : Int = 36079;	static inline var DRAW_BUFFER0_WEBGL : Int = 34853;	static inline var DRAW_BUFFER1_WEBGL : Int = 34854;	static inline var DRAW_BUFFER2_WEBGL : Int = 34855;	static inline var DRAW_BUFFER3_WEBGL : Int = 34856;	static inline var DRAW_BUFFER4_WEBGL : Int = 34857;	static inline var DRAW_BUFFER5_WEBGL : Int = 34858;	static inline var DRAW_BUFFER6_WEBGL : Int = 34859;	static inline var DRAW_BUFFER7_WEBGL : Int = 34860;	static inline var DRAW_BUFFER8_WEBGL : Int = 34861;	static inline var DRAW_BUFFER9_WEBGL : Int = 34862;	static inline var DRAW_BUFFER10_WEBGL : Int = 34863;	static inline var DRAW_BUFFER11_WEBGL : Int = 34864;	static inline var DRAW_BUFFER12_WEBGL : Int = 34865;	static inline var DRAW_BUFFER13_WEBGL : Int = 34866;	static inline var DRAW_BUFFER14_WEBGL : Int = 34867;	static inline var DRAW_BUFFER15_WEBGL : Int = 34868;	static inline var MAX_COLOR_ATTACHMENTS_WEBGL : Int = 36063;	static inline var MAX_DRAW_BUFFERS_WEBGL : Int = 34852;		function drawBuffersWEBGL( buffers : Array<Int> ) : Void;}
 |