File: ExtensionDrawBuffers.hx

package info (click to toggle)
haxe 1%3A3.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 23,464 kB
  • ctags: 9,612
  • sloc: ml: 83,200; ansic: 1,724; makefile: 473; java: 349; cs: 314; python: 250; sh: 43; cpp: 39; xml: 25
file content (66 lines) | stat: -rw-r--r-- 3,286 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * 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;
}