Compilation warning fix

This commit is contained in:
Bruno Herbelin
2022-03-18 21:46:22 +01:00
parent f4b6db9404
commit 5582ee8ed8
3 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ std::vector< ShadingProgram > maskPrograms = {
const char* MaskShader::mask_names[3] = { ICON_FA_EXPAND, ICON_FA_EDIT, ICON_FA_SHAPES };
const char* MaskShader::mask_shapes[5] = { "Elipse", "Oblong", "Rectangle", "Horizontal", "Vertical" };
ImageShader::ImageShader(): Shader(), stipple(0.f), mask_texture(0)
ImageShader::ImageShader(): Shader(), mask_texture(0), stipple(0.f)
{
// static program shader
program_ = &imageShadingProgram;