mirror of https://github.com/axmolengine/axmol.git
101 lines
3.0 KiB
C++
101 lines
3.0 KiB
C++
#include "Texture.h"
|
|
#include <cassert>
|
|
CC_BACKEND_BEGIN
|
|
|
|
#define byte(n) ((n) * 8)
|
|
#define bit(n) (n)
|
|
namespace
|
|
{
|
|
uint8_t computeBitsPerElement(TextureFormat textureFormat)
|
|
{
|
|
switch (textureFormat)
|
|
{
|
|
case TextureFormat::R8G8B8A8:
|
|
return byte(4);
|
|
case TextureFormat::R8G8B8:
|
|
return byte(3);
|
|
case TextureFormat::RGBA4444:
|
|
return byte(2);
|
|
case TextureFormat::A8:
|
|
return byte(1);
|
|
case TextureFormat::I8:
|
|
return byte(1);
|
|
case TextureFormat::RGB565:
|
|
return byte(2);
|
|
case TextureFormat::RGB5A1:
|
|
return byte(2);
|
|
case TextureFormat::AI88:
|
|
return byte(2);
|
|
case TextureFormat::ETC1:
|
|
return bit(4);
|
|
case TextureFormat::ATC_RGB:
|
|
return bit(4);
|
|
case TextureFormat::ATC_EXPLICIT_ALPHA:
|
|
return byte(1);
|
|
case TextureFormat::ATC_INTERPOLATED_ALPHA:
|
|
return byte(1);
|
|
case TextureFormat::PVRTC2:
|
|
return bit(2);
|
|
case TextureFormat::PVRTC2A:
|
|
return bit(2);
|
|
case TextureFormat::PVRTC4:
|
|
return bit(4);
|
|
case TextureFormat::PVRTC4A:
|
|
return bit(4);
|
|
case TextureFormat::S3TC_DXT1:
|
|
return bit(4);
|
|
case TextureFormat::S3TC_DXT3:
|
|
return byte(1);
|
|
case TextureFormat::S3TC_DXT5:
|
|
return byte(1);
|
|
case TextureFormat::MTL_BGR5A1:
|
|
return byte(2);
|
|
case TextureFormat::MTL_B5G6R5:
|
|
return byte(2);
|
|
case TextureFormat::MTL_ABGR4:
|
|
return byte(2);
|
|
case TextureFormat::D24S8:
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
//ios use MTLPixelFormatDepth32Float_Stencil8 as DepthStencil combined format, its 64 bits
|
|
return byte(8);
|
|
#else
|
|
//mac and opengl use Depth24_Stnicl8 combined format, its 32 bits
|
|
return byte(4);
|
|
#endif
|
|
default:
|
|
assert(false); //"textureFormat pixel size in bytes not defined!";
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
Texture::Texture(const TextureDescriptor& descriptor)
|
|
: _bitsPerElement(computeBitsPerElement(descriptor.textureFormat))
|
|
, _isMipmapEnabled(descriptor.samplerDescriptor.mipmapEnabled)
|
|
, _isCompressed(descriptor.compressed)
|
|
, _textureType(descriptor.textureType)
|
|
, _textureFormat(descriptor.textureFormat)
|
|
, _textureUsage(descriptor.textureUsage)
|
|
{
|
|
}
|
|
|
|
Texture::~Texture()
|
|
{}
|
|
|
|
Texture2D::Texture2D(const TextureDescriptor& descriptor)
|
|
: Texture(descriptor)
|
|
, _width(descriptor.width)
|
|
, _height(descriptor.height)
|
|
{
|
|
}
|
|
|
|
TextureCubemap::TextureCubemap(const TextureDescriptor &descriptor)
|
|
: Texture(descriptor)
|
|
, _size(descriptor.width)
|
|
{
|
|
|
|
}
|
|
|
|
CC_BACKEND_END
|