Files
ResInsight/VisualizationModules/LibRender/cvfTextureImage.h
2012-05-18 09:45:23 +02:00

69 lines
2.2 KiB
C++

//##################################################################################################
//
// Custom Visualization Core library
// Copyright (C) 2011-2012 Ceetron AS
//
// This library 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 library 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 at <<http://www.gnu.org/licenses/gpl.html>>
// for more details.
//
//##################################################################################################
#pragma once
#include "cvfObject.h"
#include "cvfArray.h"
#include "cvfOpenGLTypes.h"
namespace cvf {
//==================================================================================================
//
// RGBA ubyte 2D image
//
//==================================================================================================
class TextureImage : public Object
{
public:
TextureImage();
TextureImage(const TextureImage& img);
const TextureImage& operator=(TextureImage rhs);
uint width() const;
uint height() const;
void allocate(uint width, uint height);
void setData(const ubyte* rgbaData, uint width, uint height);
void setFromRgb(const UByteArray& rgbData, uint width, uint height);
const ubyte* ptr() const;
ref<UByteArray> toRgb() const;
void setPixel(uint x, uint y, const Color4ub& clr);
Color4ub pixel(uint x, uint y) const;
void fill(const Color4ub& clr);
void flipVertical();
void swap(TextureImage& other);
private:
void swapPixels(uint idx1, uint idx2);
private:
UByteArray m_dataRgba;
uint m_width;
uint m_height;
};
} // namespace cvf