blob: dda3cd79e3a0208b7a48f7bf33b8d88da35fa20e [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 ImageData
*/
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-data.dart";
import "../../../../Utils/async_utils.dart";
main() {
document.body.setInnerHtml('''
<canvas id="texcanvas" width="1px" height="2px"></canvas>
<canvas id="example" width="1px" height="2px"></canvas>
<div id="console"></div>
''', treeSanitizer: new NullTreeSanitizer());
testPrologue(gl) {
return true;
}
generateTest(wgl.RGBA, wgl.UNSIGNED_SHORT_5_5_5_1, testPrologue)();
}