From 3f647f1ca1621a07afcf0eb9a28852a8417f6156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sat, 17 Aug 2019 13:32:18 -0700 Subject: [PATCH] Fixed tabs/spaces. --- examples/06-bump/bump.cpp | 14 +++++++------- examples/07-callback/callback.cpp | 14 +++++++------- examples/08-update/update.cpp | 14 +++++++------- examples/09-hdr/hdr.cpp | 14 +++++++------- examples/10-font/font.cpp | 14 +++++++------- examples/29-debugdraw/debugdraw.cpp | 10 +++++----- 6 files changed, 40 insertions(+), 40 deletions(-) diff --git a/examples/06-bump/bump.cpp b/examples/06-bump/bump.cpp index 843de585c..7cf43f504 100644 --- a/examples/06-bump/bump.cpp +++ b/examples/06-bump/bump.cpp @@ -85,8 +85,8 @@ static const uint16_t s_cubeIndices[36] = class ExampleBump : public entry::AppI { public: - ExampleBump(const char* _name, const char* _description, const char* _url) - : entry::AppI(_name, _description, _url) + ExampleBump(const char* _name, const char* _description, const char* _url) + : entry::AppI(_name, _description, _url) { } @@ -371,8 +371,8 @@ public: } // namespace ENTRY_IMPLEMENT_MAIN( - ExampleBump - , "06-bump" - , "Loading textures." - , "https://bkaradzic.github.io/bgfx/examples.html#bump" - ); + ExampleBump + , "06-bump" + , "Loading textures." + , "https://bkaradzic.github.io/bgfx/examples.html#bump" + ); diff --git a/examples/07-callback/callback.cpp b/examples/07-callback/callback.cpp index db3c92ca7..530976d49 100644 --- a/examples/07-callback/callback.cpp +++ b/examples/07-callback/callback.cpp @@ -307,8 +307,8 @@ private: class ExampleCallback : public entry::AppI { public: - ExampleCallback(const char* _name, const char* _description, const char* _url) - : entry::AppI(_name, _description, _url) + ExampleCallback(const char* _name, const char* _description, const char* _url) + : entry::AppI(_name, _description, _url) { } @@ -499,8 +499,8 @@ public: } // namespace ENTRY_IMPLEMENT_MAIN( - ExampleCallback - , "07-callback" - , "Implementing application specific callbacks for taking screen shots, caching OpenGL binary shaders, and video capture." - , "https://bkaradzic.github.io/bgfx/examples.html#callback" - ); + ExampleCallback + , "07-callback" + , "Implementing application specific callbacks for taking screen shots, caching OpenGL binary shaders, and video capture." + , "https://bkaradzic.github.io/bgfx/examples.html#callback" + ); diff --git a/examples/08-update/update.cpp b/examples/08-update/update.cpp index ef661b095..341f8c75b 100644 --- a/examples/08-update/update.cpp +++ b/examples/08-update/update.cpp @@ -145,8 +145,8 @@ static const uint32_t kTexture2dSize = 256; class ExampleUpdate : public entry::AppI { public: - ExampleUpdate(const char* _name, const char* _description, const char* _url) - : entry::AppI(_name, _description, _url) + ExampleUpdate(const char* _name, const char* _description, const char* _url) + : entry::AppI(_name, _description, _url) , m_cube(kTextureSide) { } @@ -724,8 +724,8 @@ public: } // namespace ENTRY_IMPLEMENT_MAIN( - ExampleUpdate - , "08-update" - , "Updating textures." - , "https://bkaradzic.github.io/bgfx/examples.html#update" - ); + ExampleUpdate + , "08-update" + , "Updating textures." + , "https://bkaradzic.github.io/bgfx/examples.html#update" + ); diff --git a/examples/09-hdr/hdr.cpp b/examples/09-hdr/hdr.cpp index 59de5a04f..56aaaa59e 100644 --- a/examples/09-hdr/hdr.cpp +++ b/examples/09-hdr/hdr.cpp @@ -140,8 +140,8 @@ void setOffsets4x4Lum(bgfx::UniformHandle _handle, uint32_t _width, uint32_t _he class ExampleHDR : public entry::AppI { public: - ExampleHDR(const char* _name, const char* _description, const char* _url) - : entry::AppI(_name, _description, _url) + ExampleHDR(const char* _name, const char* _description, const char* _url) + : entry::AppI(_name, _description, _url) { } @@ -630,8 +630,8 @@ public: } // namespace ENTRY_IMPLEMENT_MAIN( - ExampleHDR - , "09-hdr" - , "Using multiple views with frame buffers, and view order remapping." - , "https://bkaradzic.github.io/bgfx/examples.html#hdr" - ); + ExampleHDR + , "09-hdr" + , "Using multiple views with frame buffers, and view order remapping." + , "https://bkaradzic.github.io/bgfx/examples.html#hdr" + ); diff --git a/examples/10-font/font.cpp b/examples/10-font/font.cpp index 017150366..7947c2cc1 100644 --- a/examples/10-font/font.cpp +++ b/examples/10-font/font.cpp @@ -54,8 +54,8 @@ static const char* s_fontFilePath[] = class ExampleFont : public entry::AppI { public: - ExampleFont(const char* _name, const char* _description, const char* _url) - : entry::AppI(_name, _description, _url) + ExampleFont(const char* _name, const char* _description, const char* _url) + : entry::AppI(_name, _description, _url) { } @@ -330,8 +330,8 @@ public: } // namespace ENTRY_IMPLEMENT_MAIN( - ExampleFont - , "10-font" - , "Use the font system to display text and styled text." - , "https://bkaradzic.github.io/bgfx/examples.html#font" - ); + ExampleFont + , "10-font" + , "Use the font system to display text and styled text." + , "https://bkaradzic.github.io/bgfx/examples.html#font" + ); diff --git a/examples/29-debugdraw/debugdraw.cpp b/examples/29-debugdraw/debugdraw.cpp index 241f3cced..d5abfc9ff 100644 --- a/examples/29-debugdraw/debugdraw.cpp +++ b/examples/29-debugdraw/debugdraw.cpp @@ -1225,8 +1225,8 @@ public: } // namespace ENTRY_IMPLEMENT_MAIN( - ExampleDebugDraw - , "29-debugdraw" - , "Debug draw." - , "https://bkaradzic.github.io/bgfx/examples.html#debugdraw" - ); + ExampleDebugDraw + , "29-debugdraw" + , "Debug draw." + , "https://bkaradzic.github.io/bgfx/examples.html#debugdraw" + );