~ubuntu-branches/ubuntu/wily/box2d/wily

« back to all changes in this revision

Viewing changes to Box2D/Testbed/Tests/Tiles.h

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-05-30 18:42:02 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140530184202-hosw11agojg02ac3
Tags: 2.3.1+ds-1
* Imported Upstream version 2.3.1+ds.
* Fix debian/watch to determine new releases by parsing
  the SVN tags of upstream's version control system.
* Update get-orig-source target for new release.
* dh_strip override: Replace $VER variable with 2.3.0 string.
* debian/copyright: Add new Public Domain and Apache 2.0 license.
* libbox2d-dev.install:
  - Install *.cmake files in /usr/lib/$(DEB_HOST_MULTIARCH)/cmake/Box2D.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
                int32 leafCount = cm.m_broadPhase.GetProxyCount();
128
128
                int32 minimumNodeCount = 2 * leafCount - 1;
129
129
                float32 minimumHeight = ceilf(logf(float32(minimumNodeCount)) / logf(2.0f));
130
 
                m_debugDraw.DrawString(5, m_textLine, "dynamic tree height = %d, min = %d", height, int32(minimumHeight));
 
130
                g_debugDraw.DrawString(5, m_textLine, "dynamic tree height = %d, min = %d", height, int32(minimumHeight));
131
131
                m_textLine += DRAW_STRING_NEW_LINE;
132
132
 
133
133
                Test::Step(settings);
134
134
 
135
 
                m_debugDraw.DrawString(5, m_textLine, "create time = %6.2f ms, fixture count = %d",
 
135
                g_debugDraw.DrawString(5, m_textLine, "create time = %6.2f ms, fixture count = %d",
136
136
                        m_createTime, m_fixtureCount);
137
137
                m_textLine += DRAW_STRING_NEW_LINE;
138
138