-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added PNGDecoder for futur use (Skybox)
Removed old shaders Added Skybox shaders PageManager and RenderablePage are now SceneManager and Scene -> Every "page" have been changed to "scene" SGELabelPage is now SGETitleScene AudioLogger is now SoundSystemLoggerBridge ModernShader.java has been removed. you can now extend directly from ShaderProgram DeferredRenderer: - Removed some commented code - Moved shadows render to ShadowsRenderer.java - Moved PostProcessing default pipeline to PostProcessingPipelineDefault.java - DeferredRenderer now have a setPostProcessingPipeline(PostProcessingPipeline) function to have custom post processing shaders - Post processing shaders are now an extension of DeferredShaderProgram (easier use) - Removed useless FBOs
- Loading branch information
Showing
65 changed files
with
580 additions
and
631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-802 Bytes
bin/slaynash/sgengine/utils/pageManagerEvent/PageManagerAdapter.class
Binary file not shown.
Binary file removed
BIN
-608 Bytes
bin/slaynash/sgengine/utils/pageManagerEvent/PageManagerEvent.class
Binary file not shown.
Binary file removed
BIN
-360 Bytes
bin/slaynash/sgengine/utils/pageManagerEvent/PageManagerListener.class
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#version 400 | ||
|
||
in vec3 textureCoords; | ||
out vec4 out_Color; | ||
|
||
uniform samplerCube cubeMap; | ||
|
||
void main(void){ | ||
out_Color = texture(cubeMap, textureCoords); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#version 400 | ||
|
||
in vec3 position; | ||
out vec3 textureCoords; | ||
|
||
uniform mat4 projectionMatrix; | ||
uniform mat4 viewMatrix; | ||
|
||
void main(void){ | ||
|
||
gl_Position = projectionMatrix * viewMatrix * vec4(position, 1.0); | ||
textureCoords = position; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.