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

Side by Side Diff: core/cross/processed_path.cc

Issue 652016: Added the bulk of the algorithm for GPU accelerated 2D vector curve... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 9 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 | « core/cross/processed_path.h ('k') | plugin/idl/processed_path.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 * Copyright 2010, Google Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 // This file contains the definition of ProcessedPath.
33
34 #include "core/cross/processed_path.h"
35
36 #include "core/cross/buffer.h"
37 #include "core/cross/field.h"
38 #include "core/cross/gpu2d/path_processor.h"
39
40 namespace o3d {
41
42 O3D_DEFN_CLASS(ProcessedPath, ObjectBase);
43
44 ProcessedPath::ProcessedPath(ServiceLocator* service_locator)
45 : ObjectBase(service_locator) {
46 }
47
48 ObjectBase::Ref ProcessedPath::Create(ServiceLocator* service_locator) {
49 return ObjectBase::Ref(
50 ProcessedPath::Ref(new ProcessedPath(service_locator)));
51 }
52
53 ProcessedPath::~ProcessedPath() {
54 }
55
56 void ProcessedPath::Clear() {
57 path.reset();
58 }
59
60 void ProcessedPath::MoveTo(float x, float y) {
61 path.moveTo(SkFloatToScalar(x), SkFloatToScalar(y));
62 }
63
64 void ProcessedPath::LineTo(float x, float y) {
65 path.lineTo(SkFloatToScalar(x), SkFloatToScalar(y));
66 }
67
68 void ProcessedPath::QuadraticTo(float cx, float cy, float x, float y) {
69 path.quadTo(SkFloatToScalar(cx),
70 SkFloatToScalar(cy),
71 SkFloatToScalar(x),
72 SkFloatToScalar(y));
73 }
74
75 void ProcessedPath::CubicTo(float c0x, float c0y,
76 float c1x, float c1y,
77 float x, float y) {
78 path.cubicTo(SkFloatToScalar(c0x),
79 SkFloatToScalar(c0y),
80 SkFloatToScalar(c1x),
81 SkFloatToScalar(c1y),
82 SkFloatToScalar(x),
83 SkFloatToScalar(y));
84 }
85
86 void ProcessedPath::Close() {
87 path.close();
88 }
89
90 void ProcessedPath::CreateMesh(Field* exterior_positions,
91 Field* exterior_texture_coordinates,
92 Field* interior_positions) {
93 gpu2d::PathProcessor processor;
94 cache.Clear();
95 processor.Process(path, &cache);
96 // Copy the exterior vertices and texture coordinates into the
97 // fields for the exterior triangles.
98 SetFields(cache.vertices(), exterior_positions,
99 cache.texcoords(), exterior_texture_coordinates,
100 cache.num_vertices());
101 // Copy the interior vertices into the field for the interior
102 // triangles.
103 SetFields(cache.interior_vertices(), interior_positions,
104 NULL, NULL,
105 cache.num_interior_vertices());
106 }
107
108 void ProcessedPath::SetFields(const float* positions,
109 Field* position_field,
110 const float* texture_coordinates,
111 Field* texture_coordinate_field,
112 unsigned int num_vertices) {
113 // It may happen that there were no exterior or interior triangles.
114 // In this case we allocate a single vertex in the fields to
115 // indicate this to JavaScript since we can not allocate a
116 // zero-sized buffer.
117 DCHECK_NE(num_vertices, 1u);
118 if (num_vertices == 0) {
119 DCHECK_EQ(positions, static_cast<const float*>(NULL));
120 DCHECK_EQ(texture_coordinates, static_cast<const float*>(NULL));
121 num_vertices = 1;
122 }
123 Buffer* buffer = position_field->buffer();
124 if (!buffer)
125 return;
126 if (buffer->num_elements() != num_vertices) {
127 if (!buffer->AllocateElements(num_vertices)) {
128 return;
129 }
130 }
131 if (num_vertices == 1) {
132 float tmp[2] = { 0 };
133 position_field->SetFromFloats(tmp, 2, 0, 1);
134 } else {
135 position_field->SetFromFloats(positions, 2, 0, num_vertices);
136 }
137
138 // The texture coordinates are NULL for the interior triangles.
139 if (texture_coordinate_field != NULL) {
140 buffer = texture_coordinate_field->buffer();
141 if (!buffer)
142 return;
143 if (buffer->num_elements() != num_vertices) {
144 if (!buffer->AllocateElements(num_vertices)) {
145 return;
146 }
147 }
148 if (num_vertices == 1) {
149 float tmp[3] = { 0 };
150 texture_coordinate_field->SetFromFloats(tmp, 3, 0, 1);
151 } else {
152 texture_coordinate_field->SetFromFloats(texture_coordinates,
153 3, 0, num_vertices);
154 }
155 }
156 }
157
158 } // namespace o3d
159
OLDNEW
« no previous file with comments | « core/cross/processed_path.h ('k') | plugin/idl/processed_path.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698