16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 22:59:19 +02:00
This commit is contained in:
milek7
2018-06-25 01:15:37 +02:00
parent 0c5f990528
commit 694aac6065
13 changed files with 131 additions and 114 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include "gl/shader_mvp.h"
#include "gl/vao.h"
#include <memory>
// sky gradient based on "A practical analytic model for daylight"
@@ -65,4 +66,5 @@ private:
float PerezFunctionO2( float Perezcoeffs[ 5 ], const float Icostheta, const float Gamma, const float Cosgamma2, const float Zenithval );
std::unique_ptr<gl::program_mvp> m_shader;
std::unique_ptr<gl::vao> m_vao;
};