ExtensionDrawBuffers.hx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (C)2005-2015 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. // This file is generated from mozilla/WebGLRenderingContext.webidl line 873:0. Do not edit!
  23. package js.html.webgl;
  24. @:native("WebGLExtensionDrawBuffers")
  25. extern class ExtensionDrawBuffers
  26. {
  27. static inline var COLOR_ATTACHMENT0_WEBGL : Int = 36064;
  28. static inline var COLOR_ATTACHMENT1_WEBGL : Int = 36065;
  29. static inline var COLOR_ATTACHMENT2_WEBGL : Int = 36066;
  30. static inline var COLOR_ATTACHMENT3_WEBGL : Int = 36067;
  31. static inline var COLOR_ATTACHMENT4_WEBGL : Int = 36068;
  32. static inline var COLOR_ATTACHMENT5_WEBGL : Int = 36069;
  33. static inline var COLOR_ATTACHMENT6_WEBGL : Int = 36070;
  34. static inline var COLOR_ATTACHMENT7_WEBGL : Int = 36071;
  35. static inline var COLOR_ATTACHMENT8_WEBGL : Int = 36072;
  36. static inline var COLOR_ATTACHMENT9_WEBGL : Int = 36073;
  37. static inline var COLOR_ATTACHMENT10_WEBGL : Int = 36074;
  38. static inline var COLOR_ATTACHMENT11_WEBGL : Int = 36075;
  39. static inline var COLOR_ATTACHMENT12_WEBGL : Int = 36076;
  40. static inline var COLOR_ATTACHMENT13_WEBGL : Int = 36077;
  41. static inline var COLOR_ATTACHMENT14_WEBGL : Int = 36078;
  42. static inline var COLOR_ATTACHMENT15_WEBGL : Int = 36079;
  43. static inline var DRAW_BUFFER0_WEBGL : Int = 34853;
  44. static inline var DRAW_BUFFER1_WEBGL : Int = 34854;
  45. static inline var DRAW_BUFFER2_WEBGL : Int = 34855;
  46. static inline var DRAW_BUFFER3_WEBGL : Int = 34856;
  47. static inline var DRAW_BUFFER4_WEBGL : Int = 34857;
  48. static inline var DRAW_BUFFER5_WEBGL : Int = 34858;
  49. static inline var DRAW_BUFFER6_WEBGL : Int = 34859;
  50. static inline var DRAW_BUFFER7_WEBGL : Int = 34860;
  51. static inline var DRAW_BUFFER8_WEBGL : Int = 34861;
  52. static inline var DRAW_BUFFER9_WEBGL : Int = 34862;
  53. static inline var DRAW_BUFFER10_WEBGL : Int = 34863;
  54. static inline var DRAW_BUFFER11_WEBGL : Int = 34864;
  55. static inline var DRAW_BUFFER12_WEBGL : Int = 34865;
  56. static inline var DRAW_BUFFER13_WEBGL : Int = 34866;
  57. static inline var DRAW_BUFFER14_WEBGL : Int = 34867;
  58. static inline var DRAW_BUFFER15_WEBGL : Int = 34868;
  59. static inline var MAX_COLOR_ATTACHMENTS_WEBGL : Int = 36063;
  60. static inline var MAX_DRAW_BUFFERS_WEBGL : Int = 34852;
  61. function drawBuffersWEBGL( buffers : Array<Int> ) : Void;
  62. }