summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/06-bump/bump.cpp
diff options
context:
space:
mode:
author Branimir Karadžić <branimirkaradzic@gmail.com>2016-04-27 17:57:45 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-04-27 17:57:45 +0200
commit94c7dd996bfb9123425c87f2d149018d371dded7 (patch)
tree3ec39fc58485a796905539867280c0f8ae13cf65 /3rdparty/bgfx/examples/06-bump/bump.cpp
parent29d7699569f10ce9077cfebe4e7045eb5226f4ff (diff)
Update BGFX and BX (nw)
Diffstat (limited to '3rdparty/bgfx/examples/06-bump/bump.cpp')
-rw-r--r--3rdparty/bgfx/examples/06-bump/bump.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/06-bump/bump.cpp b/3rdparty/bgfx/examples/06-bump/bump.cpp
index 71e06c8d99a..15952012b01 100644
--- a/3rdparty/bgfx/examples/06-bump/bump.cpp
+++ b/3rdparty/bgfx/examples/06-bump/bump.cpp
@@ -163,10 +163,10 @@ class ExampleBump : public entry::AppI
m_program = loadProgram(m_instancingSupported ? "vs_bump_instanced" : "vs_bump", "fs_bump");
// Load diffuse texture.
- m_textureColor = loadTexture("fieldstone-rgba.dds");
+ m_textureColor = loadTexture("textures/fieldstone-rgba.dds");
// Load normal texture.
- m_textureNormal = loadTexture("fieldstone-n.dds");
+ m_textureNormal = loadTexture("textures/fieldstone-n.dds");
m_timeOffset = bx::getHPCounter();
}