diff --git a/Material.h b/Material.h index 0ef323a..4c063a7 100644 --- a/Material.h +++ b/Material.h @@ -35,6 +35,13 @@ public: std::shared_ptr _pixelShader); ~Material(); + /// + /// Prepares a material before drawing a mesh + /// + /// The transform of the entity that the material is associated with + /// The camera rendering the entity this material is associated with + /// The ambient lighting value + /// The lights that are affecting this object void Activate( Transform* _transform, std::shared_ptr _camera, @@ -71,8 +78,25 @@ public: void SetVertexShader(std::shared_ptr _vertexShader); void SetPixelShader(std::shared_ptr _pixelShader); + /// + /// Loads and adds a texture to the material + /// + /// The path of the texture relative to the root where the executable is located + /// The type of texture this is (see TEXTYPE_{types}; should match shader Texture2D buffers) + /// The DirectX device + /// The DirectX context void LoadTexture(const wchar_t* _path, const char* _type, ID3D11Device* _device, ID3D11DeviceContext* _context); + /// + /// Adds a sampler to the material + /// + /// The name of the sampler (should match shader SamplerState buffers) + /// The sampler to add void PushSampler(std::string _name, Microsoft::WRL::ComPtr _sampler); + /// + /// Adds a texture to the material + /// + /// The type of texture this is (see TEXTYPE_{types}; should match shader Texture2D buffers) + /// The texture to add void PushTexture(std::string _name, Microsoft::WRL::ComPtr _texture); bool hasAlbedoMap;