Browse Source

Fix Emscripten TextureImage.cpp no deprecated build

pull/612/head
Hugo Amiard 3 years ago
parent
commit
5830249bac
  1. 3
      src/Magnum/DebugTools/TextureImage.cpp

3
src/Magnum/DebugTools/TextureImage.cpp

@ -37,6 +37,7 @@
#if defined(MAGNUM_TARGET_GLES) && !defined(MAGNUM_TARGET_GLES2)
#include <Corrade/Containers/Iterable.h>
#include <Corrade/Containers/Reference.h>
#include <Corrade/Containers/StringView.h>
#include <Corrade/Utility/Resource.h>
#include "Magnum/GL/AbstractShaderProgram.h"
@ -56,7 +57,7 @@ static void importDebugToolsResources() {
namespace Magnum { namespace DebugTools {
#if defined(MAGNUM_TARGET_GLES) && !defined(MAGNUM_TARGET_GLES2)
using namespace Containers::Literals;
using namespace Corrade::Containers::Literals;
namespace {

Loading…
Cancel
Save