summaryrefslogtreecommitdiffstats
path: root/native_client_sdk/src/examples/tumbler/tumbler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'native_client_sdk/src/examples/tumbler/tumbler.cc')
-rw-r--r--native_client_sdk/src/examples/tumbler/tumbler.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/native_client_sdk/src/examples/tumbler/tumbler.cc b/native_client_sdk/src/examples/tumbler/tumbler.cc
index 23c4362..d711d20 100644
--- a/native_client_sdk/src/examples/tumbler/tumbler.cc
+++ b/native_client_sdk/src/examples/tumbler/tumbler.cc
@@ -2,20 +2,20 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "examples/tumbler/tumbler.h"
-
#include <cstdlib>
#include <cstring>
#include <string>
#include <vector>
-#include "examples/tumbler/cube.h"
-#include "examples/tumbler/opengl_context.h"
-#include "examples/tumbler/scripting_bridge.h"
#include "ppapi/cpp/rect.h"
#include "ppapi/cpp/size.h"
#include "ppapi/cpp/var.h"
+#include "cube.h"
+#include "opengl_context.h"
+#include "scripting_bridge.h"
+#include "tumbler.h"
+
namespace {
const size_t kQuaternionElementCount = 4;
const char* const kArrayStartCharacter = "[";