HomeSort by relevance Sort by last modified time
    Searched refs:kMaxPointCount (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
pi_generator.cc 20 const int kMaxPointCount = 1000000000; // The total number of points to draw.
65 return g_total_points != kMaxPointCount;
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
voronoi.cc 41 const int kMaxPointCount = 1024;
137 Vec2 positions_[kMaxPointCount];
138 Vec2 screen_positions_[kMaxPointCount];
139 Vec2 velocities_[kMaxPointCount];
140 uint32_t colors_[kMaxPointCount];
158 for (int i = 0; i < kMaxPointCount; i++) {
372 for (int j = 0; j < kMaxPointCount; j++) {
483 point_count_ = std::min(kMaxPointCount, std::max(0, num_points));
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
voronoi.cc 40 const int kMaxPointCount = 1024;
129 Vec2 positions_[kMaxPointCount];
130 Vec2 screen_positions_[kMaxPointCount];
131 Vec2 velocities_[kMaxPointCount];
132 uint32_t colors_[kMaxPointCount];
147 for (int i = 0; i < kMaxPointCount; i++) {
369 for (int j = 0; j < kMaxPointCount; j++) {
452 point_count_ = std::min(kMaxPointCount, std::max(0, num_points));

Completed in 60 milliseconds