| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //##########################################################################
- //# #
- //# CLOUDCOMPARE #
- //# #
- //# 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; version 2 or later of the License. #
- //# #
- //# 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. #
- //# #
- //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
- //# #
- //##########################################################################
- #ifndef CC_COLOR_RAMP_SHADER_HEADER
- #define CC_COLOR_RAMP_SHADER_HEADER
- //Always on top!
- #include "ccIncludeGL.h"
- //CCFbo
- #include <ccShader.h>
- //Local
- #include "ccColorScale.h"
- class QCC_DB_LIB_API ccColorRampShader : public ccShader
- {
- Q_OBJECT
-
- public:
- //! Default constructor
- ccColorRampShader();
- //! Destructor
- virtual ~ccColorRampShader() {}
- //! Setups shader
- /** Shader must have already been stared!
- **/
- bool setup(QOpenGLFunctions_2_1* glFunc, float minSatRel, float maxSatRel, unsigned colorSteps, const ccColorScale::Shared& colorScale);
- //! Returns the maximum color ramp size
- static unsigned MaxColorRampSize();
- //! Returns the minimum memory required on the shader side
- /** See GL_MAX_FRAGMENT_UNIFORM_COMPONENTS
- **/
- static GLint MinRequiredBytes();
- };
- #endif //CC_COLOR_RAMP_SHADER_HEADER
|