mirror of
https://github.com/wiiu-env/libgui.git
synced 2024-11-14 12:25:10 +01:00
34 lines
685 B
C++
34 lines
685 B
C++
#ifndef _GRID_BACKGROUND_H_
|
|
#define _GRID_BACKGROUND_H_
|
|
|
|
#include <gui/GuiImage.h>
|
|
|
|
class GridBackground : public GuiImage {
|
|
public:
|
|
GridBackground(GuiImageData *imgData);
|
|
|
|
virtual ~GridBackground();
|
|
|
|
void setColorIntensity(const glm::vec4 &color) {
|
|
colorIntensity = color;
|
|
}
|
|
|
|
const glm::vec4 &getColorIntensity() const {
|
|
return colorIntensity;
|
|
}
|
|
|
|
void setDistanceFadeOut(const float &a) {
|
|
distanceFadeOut = a;
|
|
}
|
|
|
|
void draw(CVideo *pVideo, const glm::mat4 &modelView);
|
|
|
|
private:
|
|
glm::mat4 m_modelView;
|
|
glm::vec4 colorIntensity;
|
|
glm::vec4 alphaFadeOut;
|
|
float distanceFadeOut;
|
|
};
|
|
|
|
#endif // _GRID_BACKGROUND_H_
|