Added possible static_cast conversion of GLM types (#72)
This commit is contained in:
@@ -27,8 +27,9 @@ int test_vec2_cast()
|
||||
glm::mediump_vec2 G = static_cast<glm::mediump_vec2>(A);
|
||||
glm::highp_vec2 H = static_cast<glm::highp_vec2>(A);
|
||||
|
||||
//my_vec2 I;
|
||||
//glm::vec2 J = static_cast<glm::vec2>(I);
|
||||
my_vec2 I;
|
||||
glm::vec2 J = static_cast<glm::vec2>(I);
|
||||
glm::vec2 K(7.8);
|
||||
|
||||
int Error(0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user