16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 11:39:19 +02:00

build 170628. enabled support for specular component in lighting calculations

This commit is contained in:
tmj-fstate
2017-06-28 21:02:54 +02:00
parent 8e37307ff5
commit 49aad85597
20 changed files with 249 additions and 198 deletions

3
sky.h
View File

@@ -11,7 +11,6 @@ http://mozilla.org/MPL/2.0/.
#pragma once
#include "Model3d.h"
#include "Float3d.h"
class TSky
{
@@ -22,7 +21,7 @@ class TSky
TSky();
~TSky();
void Init();
void Render( float3 const &Tint = float3(1.0f, 1.0f, 1.0f) );
void Render( glm::vec3 const &Tint = glm::vec3(1.0f, 1.0f, 1.0f) );
};
//---------------------------------------------------------------------------