dd8988c9b2
- Removed obsolete Dartium/_blink code. R=kevmoo@google.com Change-Id: I81a6f0d5bfe33592ff8ae9c85db9266e898c2861 Reviewed-on: https://dart-review.googlesource.com/60380 Commit-Queue: Terry Lucas <terry@google.com> Reviewed-by: Kevin Moore <kevmoo@google.com>
16 lines
729 B
Plaintext
16 lines
729 B
Plaintext
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
part of $LIBRARYNAME;
|
|
|
|
/// Amalgamation of the WebGL constants from the IDL interfaces in
|
|
/// WebGLRenderingContextBase, WebGL2RenderingContextBase, & WebGLDrawBuffers.
|
|
/// Because the RenderingContextBase interfaces are hidden they would be
|
|
/// replicated in more than one class (e.g., RenderingContext and
|
|
/// RenderingContext2) to prevent that duplication these 600+ constants are
|
|
/// defined in one abstract class (WebGL).
|
|
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)abstract class $CLASSNAME {
|
|
$!MEMBERS
|
|
}
|