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: b82297fbc7209a4a8236039e8d3da2c72c853282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

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

#include <glm/gtx/rotate_vector.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::transpose;
}  // namespace glsl