-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdevice_texture.cpp
109 lines (95 loc) · 3.64 KB
/
device_texture.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Copyright (C) 2020-2025 Sami Väisänen
// Copyright (C) 2020-2025 Ensisoft http://www.ensisoft.com
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "config.h"
#include "base/logging.h"
#include "device/graphics.h"
#include "graphics/device_texture.h"
namespace gfx {
DeviceTexture::~DeviceTexture()
{
if (mTexture.IsValid())
{
mDevice->DeleteTexture(mTexture);
if (!IsTransient())
DEBUG("Deleted texture object. [name='%1']", mName);
}
}
void DeviceTexture::Upload(const void* bytes, unsigned xres, unsigned yres, Format format, bool mips)
{
if (mTexture.IsValid())
{
mDevice->DeleteTexture(mTexture);
}
if (bytes)
{
mTexture = mDevice->UploadTexture2D(bytes, xres, yres, format);
if (!IsTransient())
{
DEBUG("Uploaded new texture object. [name='%1', size=%2x%3]", mName, xres, yres);
}
if (mips)
{
const auto ret = mDevice->GenerateMipmaps(mTexture);
if (ret == dev::GraphicsDevice::MipStatus::UnsupportedSize)
WARN("Unsupported texture size for mipmap generation. [name='%1]", mName);
else if (ret == dev::GraphicsDevice::MipStatus::UnsupportedFormat)
WARN("Unsupported texture format for mipmap generation. [name='%1']", mName);
else if (ret == dev::GraphicsDevice::MipStatus::Error)
WARN("Failed to generate mips on texture. [name='%1']", mName);
else if (ret == dev::GraphicsDevice::MipStatus::Success)
{
if (!IsTransient())
DEBUG("Successfully generated texture mips. [name='%1']", mName);
}
else BUG("Bug on mipmap status.");
mHasMips = ret == dev::GraphicsDevice::MipStatus::Success;
}
}
else
{
mTexture = mDevice->AllocateTexture2D(xres, yres, format);
if (!IsTransient())
{
DEBUG("Allocated new texture object. [name='%1', size=%2x%3]", mName, xres, yres);
}
}
mWidth = xres;
mHeight = yres;
mFormat = format;
}
bool DeviceTexture::GenerateMips()
{
ASSERT(mTexture.IsValid());
ASSERT(mTexture.texture_width && mTexture.texture_height);
if (mHasMips)
return true;
const auto ret = mDevice->GenerateMipmaps(mTexture);
if (ret == dev::GraphicsDevice::MipStatus::UnsupportedSize)
WARN("Unsupported texture size for mipmap generation. [name='%1]", mName);
else if (ret == dev::GraphicsDevice::MipStatus::UnsupportedFormat)
WARN("Unsupported texture format for mipmap generation. [name='%1']", mName);
else if (ret == dev::GraphicsDevice::MipStatus::Error)
WARN("Failed to generate mips on texture. [name='%1']", mName);
else if (ret == dev::GraphicsDevice::MipStatus::Success)
{
if (!IsTransient())
DEBUG("Successfully generated texture mips. [name='%1']", mName);
}
else BUG("Bug on mipmap status.");
mHasMips = ret == dev::GraphicsDevice::MipStatus::Success;
return mHasMips;
}
} // namespace