X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;ds=inline;f=material.hpp;fp=material.hpp;h=7735f630206b1abf9c5f7a4ecfb03abee5eec154;hb=0291188124d08368ce28b308482604218bd75393;hp=074e8ae8117478afb454ec38a114e451ffa6506a;hpb=d80972d96e5fcd444657f937ab2700039efa83d2;p=opengl.git 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; };