|
|
@@ -661,7 +661,6 @@ namespace bgfx { namespace mtl
|
|
|
bx::write(&writer, magic);
|
|
|
|
|
|
TextureCreate tc;
|
|
|
- tc.m_flags = texture.m_flags;
|
|
|
tc.m_width = _width;
|
|
|
tc.m_height = _height;
|
|
|
tc.m_sides = 0;
|
|
|
@@ -673,7 +672,7 @@ namespace bgfx { namespace mtl
|
|
|
bx::write(&writer, tc);
|
|
|
|
|
|
texture.destroy();
|
|
|
- texture.create(mem, tc.m_flags, 0);
|
|
|
+ texture.create(mem, texture.m_flags, 0);
|
|
|
|
|
|
release(mem);
|
|
|
}
|