SI COLMI IL CALICE
This commit is contained in:
parent
5d6370eafb
commit
4882194b6d
1 changed files with 7 additions and 1 deletions
|
@ -3,7 +3,11 @@
|
|||
|
||||
#include <SDL.h>
|
||||
#include <GL/glew.h>
|
||||
#include "utils/time.hpp"
|
||||
|
||||
#include <iterator>
|
||||
#include <forward_list>
|
||||
#include <chrono>
|
||||
|
||||
namespace sosc {
|
||||
namespace ui {
|
||||
|
@ -11,7 +15,9 @@ class Texture {
|
|||
public:
|
||||
|
||||
private:
|
||||
|
||||
sosc::time last_render;
|
||||
std::forward_list<GLuint> texture_ids;
|
||||
std::forward_list<GLuint>::iterator texture_id_iter;
|
||||
};
|
||||
}}
|
||||
|
||||
|
|
Loading…
Reference in a new issue