mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
18 lines
287 B
C++
18 lines
287 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include "../texture2d.hpp"
|
|
#include "../texture2d_array.hpp"
|
|
#include "../texture_cube.hpp"
|
|
#include "../texture_cube_array.hpp"
|
|
|
|
namespace gli
|
|
{
|
|
template <typename texture>
|
|
texture flip(texture const & Texture);
|
|
|
|
}//namespace gli
|
|
|
|
#include "flip.inl"
|