No description
This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
Lightling 21b7cecab1
silence weird errors from shaders
- somehow texturecube was getting sent to toon shader at some point down the line, simply defined register for it for now, don't know where it's getting sent
- pbr was expected Sampler not BasicSampler
2022-04-21 17:27:42 -04:00
Assets first attempt at a surrealist scene 2022-04-21 00:22:02 -04:00
.editorconfig editor config 2022-03-19 14:36:47 -04:00
.gitignore don't ignore models 2022-02-27 14:33:20 -05:00
Camera.cpp camera adjustments 2022-04-09 21:04:28 -04:00
Camera.h camera adjustments 2022-04-09 21:04:28 -04:00
Defines.hlsli implement normal maps 2022-04-03 17:14:54 -04:00
DX11Starter.sln Initial commit of starter code project 2020-08-16 16:15:42 -04:00
DX11Starter.vcxproj silence weird errors from shaders 2022-04-21 17:27:42 -04:00
DX11Starter.vcxproj.filters first attempt at a surrealist scene 2022-04-21 00:22:02 -04:00
DXCore.cpp Added a custom input manager 2021-08-19 14:14:35 -04:00
DXCore.h move texture loading to material class 2022-03-29 10:20:44 -04:00
Entity.cpp cleanup, relocate material/entity draw prep code 2022-03-27 14:18:14 -04:00
Entity.h cleanup, relocate material/entity draw prep code 2022-03-27 14:18:14 -04:00
Game.cpp silence weird errors from shaders 2022-04-21 17:27:42 -04:00
Game.h finish implementing scene swapping 2022-04-21 15:22:32 -04:00
Helpers.hlsli cleanup normal calculations 2022-04-20 00:23:34 -04:00
HelpersPBR.hlsli PBR shader work 2022-04-09 20:19:44 -04:00
Input.cpp Updated input class to return "code analysis" warnings. 2021-09-02 11:49:54 -04:00
Input.h Updated input class to return "code analysis" warnings. 2021-09-02 11:49:54 -04:00
LICENSE Initial commit 2020-08-10 19:51:04 -04:00
Lights.h condense lighting creation 2022-04-03 15:40:50 -04:00
Lights.hlsli implement normal maps 2022-04-03 17:14:54 -04:00
LightsPBR.hlsli corrections to lighting 2022-04-09 21:21:42 -04:00
Main.cpp Initial commit of starter code project 2020-08-16 16:15:42 -04:00
Material.cpp silence weird errors from shaders 2022-04-21 17:27:42 -04:00
Material.h finish implementing scene swapping 2022-04-21 15:22:32 -04:00
Mesh.cpp calculate tangents 2022-04-03 16:05:25 -04:00
Mesh.h calculate tangents 2022-04-03 16:05:25 -04:00
packages.config install DXTK 2022-03-27 14:23:45 -04:00
PixelShader.hlsl hlsli reorganization 2022-03-19 16:55:22 -04:00
RandomPixelShader.hlsl hlsli reorganization 2022-03-19 16:55:22 -04:00
README.md Update README.md 2022-04-21 15:59:42 -04:00
SimplePixelPBR.hlsl silence weird errors from shaders 2022-04-21 17:27:42 -04:00
SimplePixelShader.hlsl silence weird errors from shaders 2022-04-21 17:27:42 -04:00
SimpleShader.cpp utilize simple shader 2022-02-27 11:57:57 -05:00
SimpleShader.h utilize simple shader 2022-02-27 11:57:57 -05:00
SimpleVertexPBR.hlsl PBR shader work 2022-04-09 20:19:44 -04:00
Sky.cpp implement skybox 2022-04-03 18:18:42 -04:00
Sky.h implement skybox 2022-04-03 18:18:42 -04:00
SkyboxDefines.hlsli define skybox shaders 2022-04-03 17:26:55 -04:00
SkyboxPixelShader.hlsl define skybox shaders 2022-04-03 17:26:55 -04:00
SkyboxVertexShader.hlsl define skybox shaders 2022-04-03 17:26:55 -04:00
ThirdPartyFunctions.hlsli hlsli reorganization 2022-03-19 16:55:22 -04:00
ToonShader.hlsl silence weird errors from shaders 2022-04-21 17:27:42 -04:00
Transform.cpp implement camera rotation, fix Rotate setting position instead of eulerAngles 2022-02-13 14:56:12 -05:00
Transform.h right/up/forward vectors 2022-02-13 12:46:26 -05:00
Vertex.h calculate tangents 2022-04-03 16:05:25 -04:00
VertexShader.hlsl implement normal maps 2022-04-03 17:14:54 -04:00

DX11 Playground

A WIP playground / rudimentary graphics engine for a class

Class: 2215.IGME.540.01 - Foundations of Game Graphics Programming

Normally I have school projects on a separate account, but decided a solo advanced c++ project would be fine on my primary account ( @xLightling )

Controls

WASD - Directional Camera Movement (Locally Oriented)
Q/E - Move Up/Down (Globally Oriented)
R/F - Look Up/Down (Pitch)
Z/C - Look Left/Right (Yaw)
1 - Load Scene 1 (Surrealist WeirdScape)
2 - Load Scene 2 (Material Test Scene)