| OLD | NEW |
| 1 library dart.dom.web_gl; | 1 library dart.dom.web_gl; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_internal' hide deprecated; | 5 import 'dart:_internal' hide deprecated; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
| 10 import 'dart:_blink' as _blink; | 10 import 'dart:_blink' as _blink; |
| 11 // DO NOT EDIT | 11 // DO NOT EDIT |
| 12 // Auto-generated dart:web_gl library. | 12 // Auto-generated dart:web_gl library. |
| 13 | 13 |
| 14 | 14 |
| 15 | 15 |
| 16 | 16 |
| 17 | 17 |
| 18 // FIXME: Can we make this private? |
| 19 const web_glBlinkMap = const { |
| 20 'ANGLEInstancedArrays': AngleInstancedArrays, |
| 21 'EXTFragDepth': ExtFragDepth, |
| 22 'EXTTextureFilterAnisotropic': ExtTextureFilterAnisotropic, |
| 23 'OESElementIndexUint': OesElementIndexUint, |
| 24 'OESStandardDerivatives': OesStandardDerivatives, |
| 25 'OESTextureFloat': OesTextureFloat, |
| 26 'OESTextureFloatLinear': OesTextureFloatLinear, |
| 27 'OESTextureHalfFloat': OesTextureHalfFloat, |
| 28 'OESTextureHalfFloatLinear': OesTextureHalfFloatLinear, |
| 29 'OESVertexArrayObject': OesVertexArrayObject, |
| 30 'WebGLActiveInfo': ActiveInfo, |
| 31 'WebGLBuffer': Buffer, |
| 32 'WebGLCompressedTextureATC': CompressedTextureAtc, |
| 33 'WebGLCompressedTexturePVRTC': CompressedTexturePvrtc, |
| 34 'WebGLCompressedTextureS3TC': CompressedTextureS3TC, |
| 35 'WebGLContextAttributes': ContextAttributes, |
| 36 'WebGLContextEvent': ContextEvent, |
| 37 'WebGLDebugRendererInfo': DebugRendererInfo, |
| 38 'WebGLDebugShaders': DebugShaders, |
| 39 'WebGLDepthTexture': DepthTexture, |
| 40 'WebGLDrawBuffers': DrawBuffers, |
| 41 'WebGLFramebuffer': Framebuffer, |
| 42 'WebGLLoseContext': LoseContext, |
| 43 'WebGLProgram': Program, |
| 44 'WebGLRenderbuffer': Renderbuffer, |
| 45 'WebGLRenderingContext': RenderingContext, |
| 46 'WebGLShader': Shader, |
| 47 'WebGLShaderPrecisionFormat': ShaderPrecisionFormat, |
| 48 'WebGLTexture': Texture, |
| 49 'WebGLUniformLocation': UniformLocation, |
| 50 'WebGLVertexArrayObjectOES': VertexArrayObject, |
| 51 |
| 52 }; |
| 18 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 53 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 19 // for details. All rights reserved. Use of this source code is governed by a | 54 // for details. All rights reserved. Use of this source code is governed by a |
| 20 // BSD-style license that can be found in the LICENSE file. | 55 // BSD-style license that can be found in the LICENSE file. |
| 21 | 56 |
| 22 | 57 |
| 23 const int ACTIVE_ATTRIBUTES = RenderingContext.ACTIVE_ATTRIBUTES; | 58 const int ACTIVE_ATTRIBUTES = RenderingContext.ACTIVE_ATTRIBUTES; |
| 24 const int ACTIVE_TEXTURE = RenderingContext.ACTIVE_TEXTURE; | 59 const int ACTIVE_TEXTURE = RenderingContext.ACTIVE_TEXTURE; |
| 25 const int ACTIVE_UNIFORMS = RenderingContext.ACTIVE_UNIFORMS; | 60 const int ACTIVE_UNIFORMS = RenderingContext.ACTIVE_UNIFORMS; |
| 26 const int ALIASED_LINE_WIDTH_RANGE = RenderingContext.ALIASED_LINE_WIDTH_RANGE; | 61 const int ALIASED_LINE_WIDTH_RANGE = RenderingContext.ALIASED_LINE_WIDTH_RANGE; |
| 27 const int ALIASED_POINT_SIZE_RANGE = RenderingContext.ALIASED_POINT_SIZE_RANGE; | 62 const int ALIASED_POINT_SIZE_RANGE = RenderingContext.ALIASED_POINT_SIZE_RANGE; |
| (...skipping 2967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2995 | 3030 |
| 2996 @DocsEditable() | 3031 @DocsEditable() |
| 2997 @DomName('WebGLVertexArrayObjectOES') | 3032 @DomName('WebGLVertexArrayObjectOES') |
| 2998 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 3033 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2999 @Experimental() // experimental | 3034 @Experimental() // experimental |
| 3000 class VertexArrayObject extends NativeFieldWrapperClass2 { | 3035 class VertexArrayObject extends NativeFieldWrapperClass2 { |
| 3001 // To suppress missing implicit constructor warnings. | 3036 // To suppress missing implicit constructor warnings. |
| 3002 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } | 3037 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } |
| 3003 | 3038 |
| 3004 } | 3039 } |
| OLD | NEW |