// Copyright (c) 2008-2023 the Urho3D project // License: MIT #pragma once #include "../Container/Ptr.h" #include "../GraphicsAPI/RenderSurface.h" #include "../GraphicsAPI/Texture.h" #include "../Resource/Image.h" namespace Urho3D { /// 3D texture resource. class URHO3D_API Texture3D : public Texture { URHO3D_OBJECT(Texture3D, Texture); public: /// Construct. explicit Texture3D(Context* context); /// Destruct. ~Texture3D() override; /// Register object factory. /// @nobind static void RegisterObject(Context* context); /// Load resource from stream. May be called from a worker thread. Return true if successful. bool BeginLoad(Deserializer& source) override; /// Finish resource loading. Always called from the main thread. Return true if successful. bool EndLoad() override; /// Mark the GPU resource destroyed on context destruction. void OnDeviceLost() override; /// Recreate the GPU resource and restore data if applicable. void OnDeviceReset() override; /// Release the texture. void Release() override; /// Set size, format and usage. Zero size will follow application window size. Return true if successful. bool SetSize(int width, int height, int depth, unsigned format, TextureUsage usage = TEXTURE_STATIC); /// Set data either partially or fully on a mip level. Return true if successful. bool SetData(unsigned level, int x, int y, int z, int width, int height, int depth, const void* data); /// Set data from an image. Return true if successful. Optionally make a single channel image alpha-only. bool SetData(Image* image, bool useAlpha = false); /// Get data from a mip level. The destination buffer must be big enough. Return true if successful. bool GetData(unsigned level, void* dest) const; protected: /// Create the GPU texture. bool Create() override; private: #ifdef URHO3D_OPENGL void OnDeviceLost_OGL(); void OnDeviceReset_OGL(); void Release_OGL(); bool SetData_OGL(unsigned level, int x, int y, int z, int width, int height, int depth, const void* data); bool SetData_OGL(Image* image, bool useAlpha); bool GetData_OGL(unsigned level, void* dest) const; bool Create_OGL(); #endif // def URHO3D_OPENGL #ifdef URHO3D_D3D11 void OnDeviceLost_D3D11(); void OnDeviceReset_D3D11(); void Release_D3D11(); bool SetData_D3D11(unsigned level, int x, int y, int z, int width, int height, int depth, const void* data); bool SetData_D3D11(Image* image, bool useAlpha); bool GetData_D3D11(unsigned level, void* dest) const; bool Create_D3D11(); #endif // def URHO3D_D3D11 /// Image file acquired during BeginLoad. SharedPtr loadImage_; /// Parameter file acquired during BeginLoad. SharedPtr loadParameters_; }; }