Pushed latest changes (idk what they are)
This commit is contained in:
parent
fd522fe56a
commit
2477370912
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
.vs
|
.vs
|
||||||
out
|
out
|
||||||
*.json
|
*.json
|
||||||
|
build
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
|
@ -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"
|
||||||
|
|
|
@ -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);
|
||||||
|
|
0
src/objects/lighting/AmbientLight.cpp
Normal file
0
src/objects/lighting/AmbientLight.cpp
Normal file
8
src/objects/lighting/AmbientLight.hpp
Normal file
8
src/objects/lighting/AmbientLight.hpp
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <glm/glm.hpp>
|
||||||
|
|
||||||
|
class AmbientLight
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
|
@ -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]);
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue