forked from bartvdbraak/blender
77b4c66cc3
Rename PHY_GetActiveScene() to KX_GetActiveScene(): more logical name Add KX_GetActiveEngine() new KX_KetsjiEngine::GetClockTime(void) to return current render frame time: if the CPU does not keep up with the frame rate, up to 5 consecutive logic frames are processed between each render frame, so that the logic system stays accurate even if the graphic system is slow. For the video texture module, it is important to stay in sync with the render frame: no need to update the texture for logic frame. BL_Texture::swapTexture(): texture id manipulation BL_Texture::getTex() : return material texture Enable video support in ffmpeg for Linux.
73 lines
1.6 KiB
C++
73 lines
1.6 KiB
C++
#ifndef __BL_TEXTURE_H__
|
|
#define __BL_TEXTURE_H__
|
|
|
|
// #include <vector>
|
|
// #include <map>
|
|
|
|
#include "MT_Matrix4x4.h"
|
|
#include "KX_Camera.h"
|
|
|
|
// --
|
|
struct Image;
|
|
struct EnvMap;
|
|
class BL_Material;
|
|
class RAS_Rect;
|
|
class RAS_ICanvas;
|
|
//class RTData;
|
|
|
|
#include "STR_String.h"
|
|
|
|
class BL_Texture
|
|
{
|
|
private:
|
|
unsigned int mTexture; // Bound texture unit data
|
|
bool mOk; // ...
|
|
bool mNeedsDeleted; // If generated
|
|
unsigned int mType; // enum TEXTURE_2D | CUBE_MAP
|
|
int mUnit; // Texture unit associated with mTexture
|
|
unsigned int mEnvState; // cache textureEnv
|
|
static unsigned int mDisableState; // speed up disabling calls
|
|
|
|
void InitNonPow2Tex(unsigned int *p,int x,int y,bool mipmap );
|
|
void InitGLTex(unsigned int *p,int x,int y,bool mipmap );
|
|
public:
|
|
BL_Texture();
|
|
~BL_Texture( );
|
|
|
|
bool Ok();
|
|
int GetUnit() {return mUnit;}
|
|
void SetUnit(int unit) {mUnit = unit;}
|
|
|
|
unsigned int GetTextureType() const;
|
|
void DeleteTex();
|
|
|
|
bool InitFromImage(int unit, Image *img, bool mipmap);
|
|
bool InitCubeMap(int unit,EnvMap *cubemap );
|
|
|
|
bool IsValid();
|
|
void Validate();
|
|
|
|
static void ActivateFirst();
|
|
static void DisableAllTextures();
|
|
static void ActivateUnit(int unit);
|
|
static int GetMaxUnits();
|
|
static int GetPow2(int x);
|
|
static void SplitEnvMap(EnvMap *map);
|
|
|
|
|
|
void ActivateTexture();
|
|
void SetMapping(int mode);
|
|
void DisableUnit();
|
|
void setTexEnv(BL_Material *mat, bool modulate=false);
|
|
unsigned int swapTexture (unsigned int newTex) {
|
|
// swap texture codes
|
|
unsigned int tmp = mTexture;
|
|
mTexture = newTex;
|
|
// return original texture code
|
|
return tmp;
|
|
}
|
|
|
|
};
|
|
|
|
#endif//__BL_TEXTURE_H__
|