Home
last modified time | relevance | path

Searched refs:_blue (Results 1 – 25 of 235) sorted by relevance

12345678910

/dports/x11-fm/worker/worker-4.10.0/src/
H A Dwc_color.cc26 _red = _green = _blue = 0; in WC_Color()
31 _red = _green = _blue = 0; in WC_Color()
40 return new WC_Color( _red, _green, _blue ); in duplicate()
55 return _blue; in getBlue()
74 _blue = b; in setBlue()
75 if ( _blue < 0 ) _blue = 0; in setBlue()
76 if ( _blue > 255 ) _blue = 255; in setBlue()
/dports/x11-wm/blackbox/blackbox-0.70.1/lib/
H A DColor.hh56 : _red(r), _green(g), _blue(b), in Color()
60 : _red(c._red), _green(c._green), _blue(c._blue), in Color()
71 { return _blue; } in blue()
73 { deallocate(); _red = r; _green = g; _blue = b; } in setRGB()
78 { return _red != -1 && _green != -1 && _blue != -1; } in valid()
82 { setRGB(c._red, c._green, c._blue); return *this; } in operator =()
84 { return _red == c._red && _green == c._green && _blue == c._blue; } in operator ==()
91 int _red, _green, _blue; member in bt::Color
/dports/graphics/libboard/libboard-5b38274/src/
H A DColor.cpp64 _blue = static_cast<unsigned char>( 255 * blue ); in setRGBf()
76 && _blue == other._blue in operator ==()
85 || _blue != other._blue in operator !=()
98 if ( _blue < other._blue ) in operator <()
100 if ( _blue == other._blue ) in operator <()
112 << (_blue/255.0) << " srgb\n"; in flushPostscript()
119 secured_sprintf( buffer, 255, "%.4f %.4f %.4f", _red/255.0, _green/255.0, _blue/255.0 ); in postscript()
128 secured_sprintf( buffer, 255, "rgb(%d,%d,%d)", _red, _green, _blue ); in svg()
157 secured_sprintf( buffer, 255, "{rgb,255:red,%d;green,%d;blue,%d}", _red, _green, _blue ); in tikz()
/dports/x11-themes/gtk3-oxygen-engine/oxygen-gtk3-1.4.1/src/
H A Doxygenrgba.h56 _blue(0), in Rgba()
65 _blue( (color_t) (b*USHRT_MAX) ),
78 _blue == other._blue;
88 _blue != other._blue;
110 << std::setw( 2 ) << std::setfill( '0' ) << guint32( _blue >> 8 ); in string()
132 { return double(_blue)/USHRT_MAX; } in blue()
162 _blue = (color_t)(value*USHRT_MAX); in setBlue()
212 color_t _blue; variable
218 …out << ( rgba._red >> 8 ) << "," << ( rgba._green >> 8 ) << "," << ( rgba._blue >> 8 ) << "," << (…
H A Doxygenrgba.cpp133 const color_t max = std::max( _red, std::max( _green, _blue ) ); in toHsv()
134 const color_t min = std::min( _red, std::min( _green, _blue ) ); in toHsv()
147 if( _red == max ) hue = double(_green - _blue )/delta; in toHsv()
148 else if( _green == max ) hue = 2.0 + double(_blue-_red)/delta; in toHsv()
149 else if( _blue == max ) hue = 4.0 + double(_red-_green)/delta; in toHsv()
174 if( h>=0 && h<1 ) { _red = (color_t) c; _green = (color_t) x; _blue = 0; } in fromHsv()
175 else if( h>=1 && h<2 ) { _red = (color_t) x; _green = (color_t) c; _blue = 0; } in fromHsv()
176 else if( h>=2 && h<3 ) { _red = 0; _green = (color_t) c; _blue = (color_t) x; } in fromHsv()
177 else if( h>=3 && h<4 ) { _red = 0; _green = (color_t) x; _blue = (color_t) c; } in fromHsv()
179 else { _red = (color_t) c; _green = 0; _blue = (color_t) x; } in fromHsv()
[all …]
/dports/x11-themes/gtk-oxygen-engine/oxygen-gtk2-1.4.6/src/
H A Doxygenrgba.cpp132 const color_t max = std::max( _red, std::max( _green, _blue ) ); in toHsv()
133 const color_t min = std::min( _red, std::min( _green, _blue ) ); in toHsv()
146 if( _red == max ) hue = double(_green - _blue )/delta; in toHsv()
147 else if( _green == max ) hue = 2.0 + double(_blue-_red)/delta; in toHsv()
148 else if( _blue == max ) hue = 4.0 + double(_red-_green)/delta; in toHsv()
173 if( h>=0 && h<1 ) { _red = (color_t) c; _green = (color_t) x; _blue = 0; } in fromHsv()
174 else if( h>=1 && h<2 ) { _red = (color_t) x; _green = (color_t) c; _blue = 0; } in fromHsv()
175 else if( h>=2 && h<3 ) { _red = 0; _green = (color_t) c; _blue = (color_t) x; } in fromHsv()
176 else if( h>=3 && h<4 ) { _red = 0; _green = (color_t) x; _blue = (color_t) c; } in fromHsv()
178 else { _red = (color_t) c; _green = 0; _blue = (color_t) x; } in fromHsv()
[all …]
H A Doxygenrgba.h56 _blue(0), in Rgba()
65 _blue( (color_t) (b*USHRT_MAX) ),
78 _blue == other._blue;
100 << std::setw( 2 ) << std::setfill( '0' ) << guint32( _blue >> 8 ) in string()
123 { return double(_blue)/USHRT_MAX; } in blue()
153 _blue = (color_t)(value*USHRT_MAX); in setBlue()
203 color_t _blue; variable
209 …out << ( rgba._red >> 8 ) << "," << ( rgba._green >> 8 ) << "," << ( rgba._blue >> 8 ) << "," << (…
/dports/graphics/libboard/libboard-5b38274/include/board/
H A DColor.h130 int _blue; /**< The blue component. */ variable
141 _blue = blue; in setRGBi()
152 _blue = rgb & 0xFF; in Color()
159 :_red(red),_green(green),_blue(blue),_alpha(alpha) in Color()
163 :_red(gray),_green(gray),_blue(gray),_alpha(alpha) in Color()
167 :_red(-1),_green(-1),_blue(-1),_alpha(255) in Color()
170 _red = _green = _blue = 0; in Color()
189 _blue = blue; in blue()
200 inline unsigned char Color::blue() const { return _blue; } in blue()
/dports/games/flightgear/flightgear-2020.3.11/src/GUI/
H A DFGColor.hxx13 if (c) set(c->_red, c->_green, c->_blue, c->_alpha); in FGColor()
16 inline void clear() { _red = _green = _blue = _alpha = -1.0f; } in clear()
24 _red = r, _green = g, _blue = b, _alpha = a; in set()
28 return _red >= 0.0 && _green >= 0.0 && _blue >= 0.0; in isValid()
34 inline void setBlue(float blue) { _blue = blue; } in setBlue()
39 inline float blue() const { return clamp(_blue); } in blue()
43 float _red, _green, _blue, _alpha; member in FGColor
H A DFGColor.cxx18 << ", blue=" << _blue << ", alpha=" << _alpha << std::endl; in print()
34 _blue = n->getFloatValue(), dirty = true; in merge()
48 if (color && color->_blue >= 0.0) in merge()
49 _blue = color->_blue, dirty = true; in merge()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osg/
H A DColorMask34 _blue(blue),
43 _blue(cm._blue),
58 COMPARE_StateAttribute_Parameter(_blue)
68 _blue = blue;
79 inline void setBlueMask(bool mask) { _blue=mask; }
80 inline bool getBlueMask() const { return _blue; }
93 bool _blue;
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/include/osg/
H A DColorMask34 _blue(blue),
43 _blue(cm._blue),
58 COMPARE_StateAttribute_Parameter(_blue)
68 _blue = blue;
79 inline void setBlueMask(bool mask) { _blue=mask; }
80 inline bool getBlueMask() const { return _blue; }
93 bool _blue;
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/wintermute/base/
H A Dbase_fader.cpp46 _red = _green = _blue = 0; in IMPLEMENT_PERSISTENT()
101 BaseEngine::getRenderer()->fadeToColor(_red, _green, _blue, _currentAlpha); in display()
122 _blue = RGBCOLGetB(sourceColor); in fadeIn()
147 _blue = RGBCOLGetB(targetColor); in fadeOut()
169 return BYTETORGBA(_red, _green, _blue, _currentAlpha); in getCurrentColor()
179 persistMgr->transferByte(TMEMBER(_blue)); in persist()
/dports/games/scummvm/scummvm-2.5.1/engines/wintermute/base/
H A Dbase_fader.cpp46 _red = _green = _blue = 0; in IMPLEMENT_PERSISTENT()
101 BaseEngine::getRenderer()->fadeToColor(_red, _green, _blue, _currentAlpha); in display()
122 _blue = RGBCOLGetB(sourceColor); in fadeIn()
147 _blue = RGBCOLGetB(targetColor); in fadeOut()
169 return BYTETORGBA(_red, _green, _blue, _currentAlpha); in getCurrentColor()
179 persistMgr->transferByte(TMEMBER(_blue)); in persist()
/dports/x11-toolkits/mygui-opengl/mygui-MyGUI3.4.0/Wrappers/MyGUI_Sharp/Types/
H A DColour.cs18 public Colour(float _red, float _green, float _blue, float _alpha) in Colour()
22 blue = _blue; in Colour()
26 public Colour(float _red, float _green, float _blue) in Colour()
30 blue = _blue; in Colour()
/dports/x11-toolkits/mygui-dummy/mygui-MyGUI3.4.0/Wrappers/MyGUI_Sharp/Types/
H A DColour.cs18 public Colour(float _red, float _green, float _blue, float _alpha) in Colour()
22 blue = _blue; in Colour()
26 public Colour(float _red, float _green, float _blue) in Colour()
30 blue = _blue; in Colour()
/dports/x11-toolkits/mygui-ogre/mygui-MyGUI3.4.0/Wrappers/MyGUI_Sharp/Types/
H A DColour.cs18 public Colour(float _red, float _green, float _blue, float _alpha) in Colour()
22 blue = _blue; in Colour()
26 public Colour(float _red, float _green, float _blue) in Colour()
30 blue = _blue; in Colour()
/dports/x11-toolkits/mygui/mygui-MyGUI3.4.0/Wrappers/MyGUI_Sharp/Types/
H A DColour.cs18 public Colour(float _red, float _green, float _blue, float _alpha) in Colour()
22 blue = _blue; in Colour()
26 public Colour(float _red, float _green, float _blue) in Colour()
30 blue = _blue; in Colour()
/dports/devel/boost-docs/boost_1_72_0/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp103 , this->_blue in initialize()
120 , this->_blue in initialize()
139 , this->_blue in initialize()
157 , this->_blue in initialize()
176 , this->_blue in initialize()
195 , this->_blue in initialize()
214 , this->_blue in initialize()
233 , this->_blue in initialize()
/dports/devel/hyperscan/boost_1_75_0/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp103 , this->_blue in initialize()
120 , this->_blue in initialize()
139 , this->_blue in initialize()
157 , this->_blue in initialize()
176 , this->_blue in initialize()
195 , this->_blue in initialize()
214 , this->_blue in initialize()
233 , this->_blue in initialize()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp103 , this->_blue in initialize()
120 , this->_blue in initialize()
139 , this->_blue in initialize()
157 , this->_blue in initialize()
176 , this->_blue in initialize()
195 , this->_blue in initialize()
214 , this->_blue in initialize()
233 , this->_blue in initialize()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp103 , this->_blue in reader_backend()
120 , this->_blue in reader_backend()
139 , this->_blue in reader_backend()
157 , this->_blue in reader_backend()
176 , this->_blue in reader_backend()
195 , this->_blue in reader_backend()
214 , this->_blue in reader_backend()
233 , this->_blue in reader_backend()
/dports/devel/boost-libs/boost_1_72_0/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp103 , this->_blue in initialize()
120 , this->_blue in initialize()
139 , this->_blue in initialize()
157 , this->_blue in initialize()
176 , this->_blue in initialize()
195 , this->_blue in initialize()
214 , this->_blue in initialize()
233 , this->_blue in initialize()
/dports/devel/boost-python-libs/boost_1_72_0/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp103 , this->_blue in initialize()
120 , this->_blue in initialize()
139 , this->_blue in initialize()
157 , this->_blue in initialize()
176 , this->_blue in initialize()
195 , this->_blue in initialize()
214 , this->_blue in initialize()
233 , this->_blue in initialize()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/gil/extension/io/tiff/detail/
H A Dscanline_read.hpp107 , this->_blue in initialize()
124 , this->_blue in initialize()
143 , this->_blue in initialize()
161 , this->_blue in initialize()
180 , this->_blue in initialize()
199 , this->_blue in initialize()
218 , this->_blue in initialize()
237 , this->_blue in initialize()

12345678910