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