diff options
Diffstat (limited to '3rdparty/bgfx/examples/21-deferred/deferred.cpp')
-rw-r--r-- | 3rdparty/bgfx/examples/21-deferred/deferred.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/21-deferred/deferred.cpp b/3rdparty/bgfx/examples/21-deferred/deferred.cpp index fbf5c546022..5cb3d3951d3 100644 --- a/3rdparty/bgfx/examples/21-deferred/deferred.cpp +++ b/3rdparty/bgfx/examples/21-deferred/deferred.cpp @@ -293,10 +293,10 @@ class ExampleDeferred : public entry::AppI m_lineProgram = loadProgram("vs_deferred_debug_line", "fs_deferred_debug_line"); // 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_gbufferTex[0].idx = bgfx::invalidHandle; m_gbufferTex[1].idx = bgfx::invalidHandle; |