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

Side by Side Diff: mojo/services/gfx/composition/interfaces/scene_token.mojom

Issue 1552963002: Initial checkin of the new Mozart compositor. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-11
Patch Set: Created 4 years, 11 months 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
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 [DartPackage="mojo_services"]
6 module mojo.gfx.composition;
7
8 // A scene token is an opaque transferable reference to a scene.
9 //
10 // Each scene is associated with a unique scene token at creation time.
11 // This token can be used to create references from one scene to another
12 // or to create a renderer for a scene graph.
13 //
14 // Scene tokens should be kept secret.
15 //
16 // TODO(jeffbrown): This implementation is a temporary placeholder until
17 // we extend Mojo to provide a way to create tokens which cannot be forged.
18 struct SceneToken {
19 uint32 value;
20 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698