Exemple #1
0
		void Color::from_hsl(float h, float s, float l)
		{
			RAGE_CHECK_DISPOSED(disposed);
			
			color = al_color_hsl(h, s, l);
		}
Exemple #2
0
void al_color_hsl_w(float h, float s, float l, ALLEGRO_COLOR *color)
{
	*color = al_color_hsl(h, s, l);
}