Update Material.h

XML comments for non-Get/Set public methods
This commit is contained in:
lightling 2022-04-20 00:55:59 -04:00
parent 520c33b017
commit 62256f1e96
Signed by: lightling
GPG key ID: 016F11E0AA296B67

View file

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