From 1068eff0047ae9d67a6bac3e9e148b003dc76afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Fri, 20 Apr 2018 16:55:53 -0700 Subject: [PATCH] Cleanup. --- examples/01-cubes/cubes.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/01-cubes/cubes.cpp b/examples/01-cubes/cubes.cpp index 4c8e249ab..0d8bcdc2b 100644 --- a/examples/01-cubes/cubes.cpp +++ b/examples/01-cubes/cubes.cpp @@ -250,9 +250,9 @@ public: // Set render states. bgfx::setState(0 - | (m_r ? BGFX_STATE_WRITE_R : 0) - | (m_g ? BGFX_STATE_WRITE_G : 0) - | (m_b ? BGFX_STATE_WRITE_B : 0) + | (m_r ? BGFX_STATE_WRITE_R : 0) + | (m_g ? BGFX_STATE_WRITE_G : 0) + | (m_b ? BGFX_STATE_WRITE_B : 0) | (m_a ? BGFX_STATE_WRITE_A : 0) | BGFX_STATE_WRITE_Z | BGFX_STATE_DEPTH_TEST_LESS