builds now with VCPKG and MSAA works
This commit is contained in:
@@ -223,7 +223,7 @@ void SamplerParameter::save(ArchiveBuffer& buffer) const
|
||||
void SamplerParameter::load(ArchiveBuffer& buffer)
|
||||
{
|
||||
ShaderParameter::load(buffer);
|
||||
data = buffer.getGraphics()->createSampler({});
|
||||
data = buffer.getGraphics()->createSampler(SamplerCreateInfo{});
|
||||
}
|
||||
|
||||
CombinedTextureParameter::CombinedTextureParameter(std::string name, uint32 byteOffset, uint32 binding)
|
||||
|
||||
@@ -31,8 +31,9 @@ struct ExpressionOutput
|
||||
void load(ArchiveBuffer& buffer);
|
||||
};
|
||||
DECLARE_REF(ShaderExpression);
|
||||
struct ShaderExpression
|
||||
class ShaderExpression
|
||||
{
|
||||
public:
|
||||
Map<std::string, ExpressionInput> inputs;
|
||||
ExpressionOutput output;
|
||||
std::string key;
|
||||
|
||||
Reference in New Issue
Block a user