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

Side by Side Diff: plugin/idl/pattern.idl

Issue 6255003: O2D:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « plugin/idl/layer.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010, Google Inc. 2 * Copyright 2010, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 \param blue The blue component. 68 \param blue The blue component.
69 \param green The green component. 69 \param green The green component.
70 \param alpha The alpha component. 70 \param alpha The alpha component.
71 \return The created pattern 71 \return The created pattern
72 %] 72 %]
73 [static] Pattern? CreateRgbaPattern(Pack pack, 73 [static] Pattern? CreateRgbaPattern(Pack pack,
74 double red, 74 double red,
75 double green, 75 double green,
76 double blue, 76 double blue,
77 double alpha); 77 double alpha);
78
79 %[
80 Set the affine transformation matrix that maps user space to pattern space.
81 The default matrix is the identity matrix, so that no transformation occurs.
82
83 \param xx xx component of the affine transformation
84 \param yx yx component of the affine transformation
85 \param xy xy component of the affine transformation
86 \param yy yy component of the affine transformation
87 \param x0 X translation component of the affine transformation
88 \param y0 Y translation component of the affine transformation
89 %]
90 void SetAffineTransform(double xx,
91 double yx,
92 double xy,
93 double yy,
94 double x0,
95 double y0);
78 }; // Pattern 96 }; // Pattern
79 97
80 } // namespace o2d 98 } // namespace o2d
81 99
82 } // namespace o3d 100 } // namespace o3d
OLDNEW
« no previous file with comments | « plugin/idl/layer.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698