blob: cf5c52e8168af253e08ef6bc7082de3b70c620f9 [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
* @note texImage* of svg.ImageElement seems to be not supported
*/
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-svg-image.dart";
import "../../../../Utils/async_utils.dart";
import "pwd.dart";
main() {
document.body.setInnerHtml('''
<canvas id="example" width="32" height="32"></canvas>
<div id="console"></div>
<div>PASS</div>
''', treeSanitizer: new NullTreeSanitizer());
testPrologue(gl) {
return true;
}
//generateTest(wgl.RGBA, wgl.UNSIGNED_BYTE, root, testPrologue)();
}