X-Git-Url: http://git.lukelau.me/?p=opengl.git;a=blobdiff_plain;f=material.hpp;h=7735f630206b1abf9c5f7a4ecfb03abee5eec154;hp=074e8ae8117478afb454ec38a114e451ffa6506a;hb=0291188124d08368ce28b308482604218bd75393;hpb=d80972d96e5fcd444657f937ab2700039efa83d2 diff --git a/material.hpp b/material.hpp index 074e8ae..7735f63 100644 --- a/material.hpp +++ b/material.hpp @@ -19,8 +19,9 @@ class Material { Texture(const std::string &file); GLuint texId; }; - Texture *diffuseMap = nullptr; - Texture *specularMap = nullptr; - Texture *normalMap = nullptr; + Texture *albedo = nullptr; + Texture *normal = nullptr; + Texture *metallicRoughness = nullptr; + Texture *ambientOcclusion = nullptr; };