windows::opengl::CTextureDataR


All platform-dependent classes have been moved to Platform Package in release 10.0.0.

This class is available on Windows platform only

Corresponding class for Linux platform is here.

Corresponding class for Android platform is here.

Implements single channel texture data. Used internally.

You can find more information in comments below. Overrided methods can be found in corresponding base interface.

class CTextureDataR :public ITextureData
    {
    public:
        int getWidth() override;
        int getHeight() override;
        int getPitch() override;
        unsigned char *getData() override;
        Color getPixel(const int x, const int y) override;
        // Since 8.0.0 
        Color getPixelFast(const int x, const int y) override;
    
        void setPixel(const int x, const int y, const Color &value) override;
        // Since 8.0.0 
        void setPixelFast(const int x, const int y, const Color &value) override;
    
        void Release() override;
    
        CTextureDataR(CTextureR *texture, const bool readonly);
        virtual ~CTextureDataR() = default;
    };
Namespace: nitisa::standard::windows::opengl
Include: Standard/Platform/Windows/OpenGL/TextureDataR.h