Pushed latest changes (idk what they are)

This commit is contained in:
Robert 2020-09-24 23:16:26 +02:00
parent fd522fe56a
commit 2477370912
8 changed files with 21 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
.vs
out
*.json
build

View file

@ -5,8 +5,9 @@ in vec2 vertexUV;
out vec4 fragmentColor;
uniform sampler2D modelTexture;
uniform vec3 lightColor;
void main()
{
fragmentColor = texture(modelTexture, vertexUV);
fragmentColor = texture(modelTexture, vertexUV) * vec4(lightColor, 1.0f);
}

View file

@ -3,7 +3,7 @@ set(VENDOR ${CMAKE_SOURCE_DIR}/vendor)
add_executable(example
"main.cpp"
"objects/lighting/PointLight.cpp")
"objects/lighting/PointLight.cpp" "objects/lighting/AmbientLight.cpp")
file(GLOB SOURCE_FILES
"${VENDOR}/src/*.c"

View file

@ -252,6 +252,7 @@ int main(int argc, char** argv)
texturedShader.Use();
texturedShader.SetUniformMat4("projection", &perspective[0][0]);
lightSource.Use(texturedShader);
cam.Use(texturedShader);
for (Cube* cube : cubes)
cube->Draw(texturedShader);

View file

View file

@ -0,0 +1,8 @@
#pragma once
#include <glm/glm.hpp>
class AmbientLight
{
};

View file

@ -59,6 +59,11 @@ PointLight::PointLight(glm::vec3 position, glm::vec3 color, float intensity) :
transformation = glm::scale(transformation, glm::vec3(0.05f));
}
void PointLight::Use(const Shader& program)
{
program.SetUniformFloat3("lightColor", &color[0]);
}
void PointLight::Draw(const Shader& program)
{
program.SetUniformFloat3("color", &color[0]);

View file

@ -13,6 +13,8 @@ public:
PointLight(glm::vec3 position, glm::vec3 color, float intensity);
~PointLight() = default;
void Use(const Shader& program);
void Draw(const Shader& program);
private: