Font working

This commit is contained in:
2022-10-24 22:28:53 -07:00
parent 98760ae494
commit eea8f5f693
15 changed files with 132 additions and 32 deletions

View File

@ -101,6 +101,6 @@ namespace Dawn {
* @param parameter parameter to set the texture on to.
* @param texture Texture to bind to the parameter.
*/
virtual void setTexture(T parameter, std::shared_ptr<Texture> texture)=0;
virtual void setTexture(T parameter, Texture *texture) = 0;
};
}