2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2013-2016 Patryk Nadrowski
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_IMAGE_LOADER_PVR_H_INCLUDED
|
|
|
|
#define IRR_C_IMAGE_LOADER_PVR_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
|
|
|
|
#ifdef _IRR_COMPILE_WITH_PVR_LOADER_
|
|
|
|
|
|
|
|
#include "IImageLoader.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace video
|
|
|
|
{
|
|
|
|
|
|
|
|
#include "irrpack.h"
|
|
|
|
|
|
|
|
struct SPVRHeader
|
|
|
|
{
|
|
|
|
u32 Version;
|
|
|
|
u32 Flags;
|
|
|
|
u64 PixelFormat;
|
|
|
|
u32 ColourSpace;
|
|
|
|
u32 ChannelType;
|
|
|
|
u32 Height;
|
|
|
|
u32 Width;
|
|
|
|
u32 Depth;
|
|
|
|
u32 NumSurfaces;
|
|
|
|
u32 NumFaces;
|
|
|
|
u32 MipMapCount;
|
|
|
|
u32 MetDataSize;
|
|
|
|
} PACK_STRUCT;
|
|
|
|
|
|
|
|
#include "irrunpack.h"
|
|
|
|
|
|
|
|
class CImageLoaderPVR : public IImageLoader
|
|
|
|
{
|
|
|
|
public:
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isALoadableFileExtension(const io::path& filename) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isALoadableFileFormat(io::IReadFile* file) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual IImage* loadImage(io::IReadFile* file) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual core::array<IImage*> loadImages(io::IReadFile* file, E_TEXTURE_TYPE* type) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|