shader: Remove curly braces initializers on shared pointers

This commit is contained in:
ReinUsesLisp 2020-02-01 22:49:25 -03:00
parent b5bbe7e752
commit 223a89a19f
5 changed files with 12 additions and 12 deletions

View file

@ -443,9 +443,9 @@ struct MetaTexture {
std::vector<Node> derivates;
Node bias;
Node lod;
Node component{};
Node component;
u32 element{};
Node index{};
Node index;
};
struct MetaImage {