libgui/include/gui/GuiImageData.h

86 lines
2.6 KiB
C
Raw Normal View History

2017-10-29 10:28:14 +01:00
/****************************************************************************
* Copyright (C) 2015 Dimok
*
* 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 <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef GUI_IMAGEDATA_H_
#define GUI_IMAGEDATA_H_
#include <gd.h>
#include <gui/GuiElement.h>
2018-06-21 20:44:58 +02:00
#include <gui/gx2_ext.h>
#include <gx2/texture.h>
2017-10-29 10:28:14 +01:00
class GuiImageData : public GuiElement {
2017-10-29 10:28:14 +01:00
public:
//!Constructor
GuiImageData();
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
//!\param img Image data
//!\param imgSize The image size
2020-08-13 12:38:07 +02:00
GuiImageData(const uint8_t *img, int32_t imgSize, GX2TexClampMode textureClamp = GX2_TEX_CLAMP_MODE_CLAMP, GX2SurfaceFormat textureFormat = GX2_SURFACE_FORMAT_UNORM_R8_G8_B8_A8);
2017-10-29 10:28:14 +01:00
//!Destructor
virtual ~GuiImageData();
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
//!Load image from buffer
//!\param img Image data
//!\param imgSize The image size
2020-08-13 12:38:07 +02:00
void loadImage(const uint8_t *img, int32_t imgSize, GX2TexClampMode textureClamp = GX2_TEX_CLAMP_MODE_CLAMP, GX2SurfaceFormat textureFormat = GX2_SURFACE_FORMAT_UNORM_R8_G8_B8_A8);
2017-10-29 10:28:14 +01:00
//! getter functions
2020-08-13 12:38:07 +02:00
const GX2Texture *getTexture() const {
2018-06-21 20:44:58 +02:00
return texture;
};
2020-08-13 12:38:07 +02:00
const GX2Sampler *getSampler() const {
2018-06-21 20:44:58 +02:00
return sampler;
};
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
//!Gets the image width
//!\return image width
2018-06-21 20:44:58 +02:00
int32_t getWidth() const {
2020-08-13 12:38:07 +02:00
if (texture) return texture->surface.width;
2018-06-21 20:44:58 +02:00
else return 0;
};
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
//!Gets the image height
//!\return image height
2018-06-21 20:44:58 +02:00
int32_t getHeight() const {
2020-08-13 12:38:07 +02:00
if (texture) return texture->surface.height;
2018-06-21 20:44:58 +02:00
else return 0;
};
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
//! release memory of the image data
void releaseData(void);
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
private:
2018-06-21 20:44:58 +02:00
void gdImageToUnormR8G8B8A8(gdImagePtr gdImg, uint32_t *imgBuffer, uint32_t width, uint32_t height, uint32_t pitch);
2020-08-13 12:38:07 +02:00
2018-06-21 20:44:58 +02:00
void gdImageToUnormR5G6B5(gdImagePtr gdImg, uint16_t *imgBuffer, uint32_t width, uint32_t height, uint32_t pitch);
2017-10-29 10:28:14 +01:00
GX2Texture *texture;
GX2Sampler *sampler;
2018-06-21 20:44:58 +02:00
enum eMemoryTypes {
2017-10-29 10:28:14 +01:00
eMemTypeMEM2,
eMemTypeMEM1,
eMemTypeMEMBucket
};
2018-06-21 20:44:58 +02:00
uint8_t memoryType;
2017-10-29 10:28:14 +01:00
};
#endif