Welcome to mirror list, hosted at ThFree Co, Russian Federation.

glsl_func.hpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e97fbb050a4947745be8bab242d9242efcdc68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <glm_config.hpp>
#include <glm/geometric.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>

namespace glsl
{

using glm::dot;
using glm::cross;
using glm::normalize;
using glm::length;
using glm::distance;

using glm::translate;
using glm::rotate;
using glm::scale;

using glm::value_ptr;

} // namespace glsl