Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(547)

Side by Side Diff: client/html/generated/src/interface/CanvasPixelArray.dart

Issue 8475009: Proposed canvas and WebGL cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: ready to discuss Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 // TODO(jacobr): should we remove this class completely or
8 // add additional helper methods like
vsm 2011/11/04 21:26:35 If we remove this, do you have an alternative sche
Jacob 2011/11/04 22:26:13 You should still be able to directly access the un
9 // Color getPixel(int index)
10 // or
11 // void setPixel(int r, int g, int b, int a, int index);
7 interface CanvasPixelArray extends List<int> { 12 interface CanvasPixelArray extends List<int> {
8
9 int get length();
10
11 int item(int index);
12 } 13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698