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

3
.gitignore vendored
View file

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

View file

@ -5,8 +5,9 @@ in vec2 vertexUV;
out vec4 fragmentColor; out vec4 fragmentColor;
uniform sampler2D modelTexture; uniform sampler2D modelTexture;
uniform vec3 lightColor;
void main() 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 add_executable(example
"main.cpp" "main.cpp"
"objects/lighting/PointLight.cpp") "objects/lighting/PointLight.cpp" "objects/lighting/AmbientLight.cpp")
file(GLOB SOURCE_FILES file(GLOB SOURCE_FILES
"${VENDOR}/src/*.c" "${VENDOR}/src/*.c"

View file

@ -252,6 +252,7 @@ int main(int argc, char** argv)
texturedShader.Use(); texturedShader.Use();
texturedShader.SetUniformMat4("projection", &perspective[0][0]); texturedShader.SetUniformMat4("projection", &perspective[0][0]);
lightSource.Use(texturedShader);
cam.Use(texturedShader); cam.Use(texturedShader);
for (Cube* cube : cubes) for (Cube* cube : cubes)
cube->Draw(texturedShader); 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)); 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) void PointLight::Draw(const Shader& program)
{ {
program.SetUniformFloat3("color", &color[0]); program.SetUniformFloat3("color", &color[0]);

View file

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