mirror of
https://github.com/love2d/love.git
synced 2026-08-20 04:30:09 +02:00
Fix build?
--HG-- branch : minor
This commit is contained in:
@@ -346,6 +346,21 @@ std::vector<std::string> getConstants(AttributeStep)
|
|||||||
return attributeSteps.getNames();
|
return attributeSteps.getNames();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool getConstant(const char *in, DataType &out)
|
||||||
|
{
|
||||||
|
return dataTypes.find(in, out);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool getConstant(DataType in, const char *&out)
|
||||||
|
{
|
||||||
|
return dataTypes.find(in, out);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::vector<std::string> getConstants(DataType)
|
||||||
|
{
|
||||||
|
return dataTypes.getNames();
|
||||||
|
}
|
||||||
|
|
||||||
} // vertex
|
} // vertex
|
||||||
} // graphics
|
} // graphics
|
||||||
} // love
|
} // love
|
||||||
|
|||||||
Reference in New Issue
Block a user