blob: bc8ac1cb9f4be397aa326d1640ea7d52933f88f7 [file] [log] [blame]
/*
* Copyright (c) 2014, 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.
*/
/**
* @description Verify texImage2D and texSubImage2D code paths taking image
* elements
*/
import "dart:html";
import "dart:web_gl" as wgl;
import 'dart:typed_data';
import "../../../testcommon.dart";
import "resources/webgl-test.dart";
import "resources/webgl-test-utils.dart" as wtu;
import "resources/tex-image-and-sub-image-2d-with-image.dart";
import "../../../../Utils/async_utils.dart";
import "pwd.dart";
main() {
document.body.setInnerHtml('''
<canvas id="example" width="32px" height="32px"></canvas>
<div id="console"></div>
''', treeSanitizer: new NullTreeSanitizer());
testPrologue(gl) {
return true;
}
generateTest(wgl.RGB, wgl.UNSIGNED_SHORT_5_6_5, root, testPrologue)();
}