Chromium Code Reviews| Index: samples/openglui/web/raytrace_driver.dart |
| =================================================================== |
| --- samples/openglui/web/raytrace_driver.dart (revision 17737) |
| +++ samples/openglui/web/raytrace_driver.dart (working copy) |
| @@ -4,9 +4,11 @@ |
| import 'gl_driver.dart'; |
| // TODO(vsm): Make this a package URL. |
| +import 'dart:html'; |
| import '../src/raytrace.dart'; |
| main() { |
| wrapVertexArray = true; |
| - glMain(setup, resize, update); |
| -} |
| + glMain(setup, resize, update, onMotionDown); |
| +} |
| + |