added conversion from colorf to vec4

This commit is contained in:
Roman Sorokin 2014-08-04 11:17:33 +03:00 committed by Alex Zolotarev
parent b8aa11c60d
commit 9e24a2868e

View file

@ -1,6 +1,7 @@
#pragma once
#include "../geometry/point2d.hpp"
#include "../../drape/color.hpp"
namespace glsl_types
{
@ -80,6 +81,9 @@ struct vec4
vec4(float X, float Y = 0.0f, float Z = 0.0f, float W = 0.0f)
: x(X), y(Y), z(Z), w(W) {}
vec4(dp::ColorF const & clr)
: x(clr.m_r), y(clr.m_g), z(clr.m_b), w(clr.m_a) {}
float x;
float y;
float z;