OLD | NEW |
(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 #include "core/cross/gpu2d/path_cache.h" |
| 33 |
| 34 namespace o3d { |
| 35 namespace gpu2d { |
| 36 |
| 37 unsigned int PathCache::num_vertices() const { |
| 38 return vertices_.size() / 2; |
| 39 } |
| 40 |
| 41 const float* PathCache::vertices() const { |
| 42 if (num_vertices() == 0) |
| 43 return NULL; |
| 44 return &vertices_.front(); |
| 45 } |
| 46 |
| 47 const float* PathCache::texcoords() const { |
| 48 if (num_vertices() == 0) |
| 49 return NULL; |
| 50 return &texcoords_.front(); |
| 51 } |
| 52 |
| 53 void PathCache::AddVertex(float x, float y, |
| 54 float k, float l, float m) { |
| 55 vertices_.push_back(x); |
| 56 vertices_.push_back(y); |
| 57 texcoords_.push_back(k); |
| 58 texcoords_.push_back(l); |
| 59 texcoords_.push_back(m); |
| 60 } |
| 61 |
| 62 void PathCache::Clear() { |
| 63 vertices_.clear(); |
| 64 texcoords_.clear(); |
| 65 interior_vertices_.clear(); |
| 66 #ifdef O3D_CORE_CROSS_GPU2D_PATH_CACHE_DEBUG_INTERIOR_EDGES |
| 67 interior_edge_vertices_.clear(); |
| 68 #endif // O3D_CORE_CROSS_GPU2D_PATH_CACHE_DEBUG_INTERIOR_EDGES |
| 69 } |
| 70 |
| 71 unsigned int PathCache::num_interior_vertices() const { |
| 72 return interior_vertices_.size() / 2; |
| 73 } |
| 74 |
| 75 const float* PathCache::interior_vertices() const { |
| 76 if (num_interior_vertices() == 0) |
| 77 return NULL; |
| 78 return &interior_vertices_.front(); |
| 79 } |
| 80 |
| 81 void PathCache::AddInteriorVertex(float x, float y) { |
| 82 interior_vertices_.push_back(x); |
| 83 interior_vertices_.push_back(y); |
| 84 } |
| 85 |
| 86 #ifdef O3D_CORE_CROSS_GPU2D_PATH_CACHE_DEBUG_INTERIOR_EDGES |
| 87 unsigned int PathCache::num_interior_edge_vertices() const { |
| 88 return interior_edge_vertices_.size() / 2; |
| 89 } |
| 90 |
| 91 const float* PathCache::interior_edge_vertices() const { |
| 92 if (num_interior_edge_vertices() == 0) |
| 93 return NULL; |
| 94 return &interior_edge_vertices_.front(); |
| 95 } |
| 96 |
| 97 void PathCache::AddInteriorEdgeVertex(float x, float y) { |
| 98 interior_edge_vertices_.push_back(x); |
| 99 interior_edge_vertices_.push_back(y); |
| 100 } |
| 101 #endif // O3D_CORE_CROSS_GPU2D_PATH_CACHE_DEBUG_INTERIOR_EDGES |
| 102 |
| 103 } // namespace gpu2d |
| 104 } // namespace o3d |
| 105 |
OLD | NEW |