Skip to content

Commit

Permalink
Switching BOOL to bool
Browse files Browse the repository at this point in the history
  • Loading branch information
colincornaby committed Jul 1, 2024
1 parent 74ea90d commit 8b1d619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Plasma/FeatureLib/pfMetalPipeline/plMetalDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ class plMetalDevice
// MARK: - Device capabilities
private:
/// Returns true if the device supports tile memory features such as directly writable render buffers.
inline BOOL SupportsTileMemory() const { return fSupportsTileMemory; }
BOOL fSupportsTileMemory;
inline bool SupportsTileMemory() const { return fSupportsTileMemory; }
bool fSupportsTileMemory;
};

#endif

0 comments on commit 8b1d619

Please sign in to comment.