Fix various typos
* Add TODO notes for typos that should be fixed for 5.0 Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
@ -274,7 +274,7 @@ public:
|
||||
MTLFormatType getFormatType(DataFormat p_format);
|
||||
|
||||
/** Returns the format type corresponding to the specified Metal MTLPixelFormat, */
|
||||
MTLFormatType getFormatType(MTLPixelFormat p_formt);
|
||||
MTLFormatType getFormatType(MTLPixelFormat p_format);
|
||||
|
||||
/**
|
||||
* Returns the Metal MTLPixelFormat corresponding to the specified Godot pixel
|
||||
|
||||
@ -144,8 +144,8 @@ MTLFormatType PixelFormats::getFormatType(DataFormat p_format) {
|
||||
return getDataFormatDesc(p_format).formatType;
|
||||
}
|
||||
|
||||
MTLFormatType PixelFormats::getFormatType(MTLPixelFormat p_formt) {
|
||||
return getDataFormatDesc(p_formt).formatType;
|
||||
MTLFormatType PixelFormats::getFormatType(MTLPixelFormat p_format) {
|
||||
return getDataFormatDesc(p_format).formatType;
|
||||
}
|
||||
|
||||
MTLPixelFormat PixelFormats::getMTLPixelFormat(DataFormat p_format) {
|
||||
|
||||
Reference in New Issue
Block a user