2017-04-23 04:44:34 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-06-19 03:28:28 +00:00
|
|
|
#include <cstddef>
|
2017-05-31 04:44:03 +00:00
|
|
|
#include <optional>
|
2017-06-19 03:28:28 +00:00
|
|
|
#include <string>
|
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/MathUtil.h"
|
|
|
|
#include "VideoCommon/TextureConfig.h"
|
|
|
|
|
|
|
|
class AbstractTexture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit AbstractTexture(const TextureConfig& c);
|
|
|
|
virtual ~AbstractTexture();
|
|
|
|
virtual void Bind(unsigned int stage) = 0;
|
2017-05-31 04:44:03 +00:00
|
|
|
bool Save(const std::string& filename, unsigned int level);
|
|
|
|
|
|
|
|
struct RawTextureInfo
|
|
|
|
{
|
|
|
|
const u8* data;
|
|
|
|
u32 stride;
|
|
|
|
u32 width;
|
|
|
|
u32 height;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::optional<RawTextureInfo> Map();
|
|
|
|
std::optional<RawTextureInfo> Map(u32 level, u32 x, u32 y, u32 width, u32 height);
|
|
|
|
std::optional<RawTextureInfo> Map(u32 level);
|
|
|
|
virtual void Unmap();
|
2017-04-23 04:44:34 +00:00
|
|
|
|
|
|
|
virtual void CopyRectangleFromTexture(const AbstractTexture* source,
|
|
|
|
const MathUtil::Rectangle<int>& srcrect,
|
|
|
|
const MathUtil::Rectangle<int>& dstrect) = 0;
|
|
|
|
virtual void Load(u32 level, u32 width, u32 height, u32 row_length, const u8* buffer,
|
|
|
|
size_t buffer_size) = 0;
|
|
|
|
|
2017-06-12 17:37:28 +00:00
|
|
|
static bool IsCompressedHostTextureFormat(AbstractTextureFormat format);
|
|
|
|
static size_t CalculateHostTextureLevelPitch(AbstractTextureFormat format, u32 row_length);
|
2017-04-23 04:44:34 +00:00
|
|
|
|
2017-06-19 03:33:15 +00:00
|
|
|
const TextureConfig& GetConfig() const;
|
2017-04-23 04:44:34 +00:00
|
|
|
|
|
|
|
protected:
|
2017-05-31 04:44:03 +00:00
|
|
|
virtual std::optional<RawTextureInfo> MapFullImpl();
|
|
|
|
virtual std::optional<RawTextureInfo> MapRegionImpl(u32 level, u32 x, u32 y, u32 width,
|
|
|
|
u32 height);
|
|
|
|
bool m_currently_mapped = false;
|
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
const TextureConfig m_config;
|
|
|
|
};
|