mirror of
https://github.com/wiiu-env/libgui.git
synced 2024-11-14 20:35:09 +01:00
85 lines
2.6 KiB
C++
85 lines
2.6 KiB
C++
/****************************************************************************
|
|
* Copyright (C) 2015 Dimok
|
|
*
|
|
* This program 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 program 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
#ifndef __FXAA_SHADER_H_
|
|
#define __FXAA_SHADER_H_
|
|
|
|
#include <gui/video/shaders/FetchShader.h>
|
|
#include <gui/video/shaders/PixelShader.h>
|
|
#include <gui/video/shaders/VertexShader.h>
|
|
|
|
class FXAAShader : public Shader {
|
|
public:
|
|
static FXAAShader *instance() {
|
|
if (!shaderInstance) {
|
|
shaderInstance = new FXAAShader();
|
|
}
|
|
return shaderInstance;
|
|
}
|
|
|
|
static void destroyInstance() {
|
|
if (shaderInstance) {
|
|
delete shaderInstance;
|
|
shaderInstance = NULL;
|
|
}
|
|
}
|
|
|
|
void setShaders(void) const {
|
|
fetchShader->setShader();
|
|
vertexShader.setShader();
|
|
pixelShader.setShader();
|
|
}
|
|
|
|
void setAttributeBuffer() const {
|
|
VertexShader::setAttributeBuffer(0, ciPositionVtxsSize, cuVertexAttrSize, posVtxs);
|
|
VertexShader::setAttributeBuffer(1, ciTexCoordsVtxsSize, cuTexCoordAttrSize, texCoords);
|
|
}
|
|
|
|
void setResolution(const glm::vec2 &vec) {
|
|
PixelShader::setUniformReg(resolutionLocation, 4, &vec[0]);
|
|
}
|
|
|
|
void setTextureAndSampler(const GX2Texture *texture, const GX2Sampler *sampler) const {
|
|
GX2SetPixelTexture((GX2Texture *) texture, samplerLocation);
|
|
GX2SetPixelSampler((GX2Sampler *) sampler, samplerLocation);
|
|
}
|
|
|
|
private:
|
|
FXAAShader();
|
|
|
|
virtual ~FXAAShader();
|
|
|
|
static const uint32_t cuAttributeCount = 2;
|
|
static const uint32_t ciPositionVtxsSize = 4 * cuVertexAttrSize;
|
|
static const uint32_t ciTexCoordsVtxsSize = 4 * cuTexCoordAttrSize;
|
|
|
|
static FXAAShader *shaderInstance;
|
|
|
|
FetchShader *fetchShader;
|
|
VertexShader vertexShader;
|
|
PixelShader pixelShader;
|
|
|
|
float *posVtxs;
|
|
float *texCoords;
|
|
|
|
uint32_t samplerLocation;
|
|
uint32_t positionLocation;
|
|
uint32_t texCoordLocation;
|
|
uint32_t resolutionLocation;
|
|
};
|
|
|
|
#endif // __FXAA_SHADER_H_
|