TDME2 1.9.121
Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
Texture Class Referencefinal

Texture entity. More...

#include <tdme/engine/fileio/textures/Texture.h>

Inheritance diagram for Texture:
Inheritance graph
Collaboration diagram for Texture:
Collaboration graph

Public Types

enum  ClampMode { CLAMPMODE_EDGE , CLAMPMODE_TRANSPARENTPIXEL }
 

Public Member Functions

 Texture (const string &id, int32_t depth, int32_t width, int32_t height, int32_t textureWidth, int32_t textureHeight, ByteBuffer *textureData)
 Public constructor. More...
 
const string & getId () const
 
int32_t getDepth () const
 
int32_t getWidth () const
 
int32_t getHeight () const
 
int32_t getTextureHeight () const
 
int32_t getTextureWidth () const
 
ByteBuffergetTextureData ()
 
bool isUseMipMap () const
 
void setUseMipMap (bool useMipMap)
 Set if to use mip map. More...
 
bool isRepeat () const
 
void setRepeat (bool repeat)
 Set repeat. More...
 
ClampMode getClampMode () const
 
void setClampMode (ClampMode clampMode)
 Set clamp mode. More...
 
int32_t getAtlasSize () const
 
void setAtlasSize (int32_t atlasSize)
 Set atlas size. More...
 
virtual void onDelete () override
 Callback method to be overridden, will be called if object will be deleted. More...
 
- Public Member Functions inherited from Reference
 Reference ()
 Public constructor. More...
 
virtual ~Reference ()
 destructor More...
 
void acquireReference ()
 acquires a reference, incrementing the counter More...
 
void releaseReference ()
 releases a reference, thus decrementing the counter and delete it if reference counter is zero More...
 
virtual void onDelete ()
 Callback method to be overridden, will be called if object will be deleted. More...
 

Private Member Functions

 ~Texture ()
 Destructor. More...
 

Private Attributes

string id
 
int32_t depth
 
int32_t width
 
int32_t height
 
int32_t textureHeight
 
int32_t textureWidth
 
ByteBuffertextureData
 
bool useMipMap
 
bool repeat
 
ClampMode clampMode
 
int32_t atlasSize
 

Detailed Description

Texture entity.

Version
$Id$
Author
Andreas Drewke

Definition at line 20 of file Texture.h.

Member Enumeration Documentation

◆ ClampMode

enum ClampMode
Enumerator
CLAMPMODE_EDGE 
CLAMPMODE_TRANSPARENTPIXEL 

Definition at line 24 of file Texture.h.

Constructor & Destructor Documentation

◆ Texture()

Texture ( const string &  id,
int32_t  depth,
int32_t  width,
int32_t  height,
int32_t  textureWidth,
int32_t  textureHeight,
ByteBuffer textureData 
)
inline

Public constructor.

Parameters
idid
depthdepth
widthwidth
heightheight
textureWidthtexture width
textureHeighttexture height
textureDatatexture data

Definition at line 36 of file Texture.h.

◆ ~Texture()

~Texture ( )
private

Destructor.

Definition at line 12 of file Texture.cpp.

Member Function Documentation

◆ getAtlasSize()

int32_t getAtlasSize ( ) const
inline
Returns
atlas size

Definition at line 154 of file Texture.h.

◆ getClampMode()

ClampMode getClampMode ( ) const
inline
Returns
clamp mode

Definition at line 139 of file Texture.h.

◆ getDepth()

int32_t getDepth ( ) const
inline
Returns
depth in bits per pixel

Definition at line 67 of file Texture.h.

◆ getHeight()

int32_t getHeight ( ) const
inline
Returns
image height

Definition at line 81 of file Texture.h.

◆ getId()

const string & getId ( ) const
inline
Returns
id

Definition at line 60 of file Texture.h.

◆ getTextureData()

ByteBuffer * getTextureData ( )
inline
Returns
texture data wrapped in a byte buffer

Definition at line 102 of file Texture.h.

◆ getTextureHeight()

int32_t getTextureHeight ( ) const
inline
Returns
texture height

Definition at line 88 of file Texture.h.

◆ getTextureWidth()

int32_t getTextureWidth ( ) const
inline
Returns
texture width

Definition at line 95 of file Texture.h.

◆ getWidth()

int32_t getWidth ( ) const
inline
Returns
image width

Definition at line 74 of file Texture.h.

◆ isRepeat()

bool isRepeat ( ) const
inline
Returns
is repeat

Definition at line 124 of file Texture.h.

◆ isUseMipMap()

bool isUseMipMap ( ) const
inline
Returns
use mip map

Definition at line 109 of file Texture.h.

◆ onDelete()

void onDelete ( )
inlineoverridevirtual

Callback method to be overridden, will be called if object will be deleted.

Reimplemented from Reference.

Definition at line 16 of file Texture.cpp.

◆ setAtlasSize()

void setAtlasSize ( int32_t  atlasSize)
inline

Set atlas size.

Parameters
atlasSizeatlas size

Definition at line 162 of file Texture.h.

◆ setClampMode()

void setClampMode ( ClampMode  clampMode)
inline

Set clamp mode.

Parameters
clampModeclamp mode

Definition at line 147 of file Texture.h.

◆ setRepeat()

void setRepeat ( bool  repeat)
inline

Set repeat.

Parameters
repeatrepeat

Definition at line 132 of file Texture.h.

◆ setUseMipMap()

void setUseMipMap ( bool  useMipMap)
inline

Set if to use mip map.

Parameters
useMipMapmip map enabled

Definition at line 117 of file Texture.h.

Member Data Documentation

◆ atlasSize

int32_t atlasSize
private

Definition at line 180 of file Texture.h.

◆ clampMode

ClampMode clampMode
private

Definition at line 179 of file Texture.h.

◆ depth

int32_t depth
private

Definition at line 171 of file Texture.h.

◆ height

int32_t height
private

Definition at line 173 of file Texture.h.

◆ id

string id
private

Definition at line 170 of file Texture.h.

◆ repeat

bool repeat
private

Definition at line 178 of file Texture.h.

◆ textureData

ByteBuffer* textureData
private

Definition at line 176 of file Texture.h.

◆ textureHeight

int32_t textureHeight
private

Definition at line 174 of file Texture.h.

◆ textureWidth

int32_t textureWidth
private

Definition at line 175 of file Texture.h.

◆ useMipMap

bool useMipMap
private

Definition at line 177 of file Texture.h.

◆ width

int32_t width
private

Definition at line 172 of file Texture.h.


The documentation for this class was generated from the following files: