lint: update to clang-format-13

This commit is contained in:
Pierre Bourdon 2023-02-02 04:56:08 +01:00
parent 69b178e95f
commit c92de420ef
No known key found for this signature in database
GPG Key ID: 6FB80DCD84DA0F1C
3 changed files with 18 additions and 17 deletions

View File

@ -91,8 +91,8 @@ static const char* to_string(MTLCompareFunction compare)
// clang-format on
static void SetupDepthStencil(
MRCOwned<id<MTLDepthStencilState>> (&dss)[Metal::DepthStencilSelector::N_VALUES])
static void
SetupDepthStencil(MRCOwned<id<MTLDepthStencilState>> (&dss)[Metal::DepthStencilSelector::N_VALUES])
{
auto desc = MRCTransfer([MTLDepthStencilDescriptor new]);
Metal::DepthStencilSelector sel;

View File

@ -440,7 +440,8 @@ void Metal::StateTracker::FlushEncoders()
if (StateTracker* tracker = backref->state_tracker)
{
// We can do the update non-atomically because we only ever update under the lock
u64 newval = std::max(draw, tracker->m_last_finished_draw.load(std::memory_order_relaxed));
u64 newval =
std::max(draw, tracker->m_last_finished_draw.load(std::memory_order_relaxed));
tracker->m_last_finished_draw.store(newval, std::memory_order_release);
if (q)
{

View File

@ -18,7 +18,7 @@ if ! [ -x "$(command -v $GIT)" ]; then
exit 1
fi
REQUIRED_CLANG_FORMAT_MAJOR=12
REQUIRED_CLANG_FORMAT_MAJOR=13
REQUIRED_CLANG_FORMAT_MINOR=0
CLANG_FORMAT=clang-format
CLANG_FORMAT_MAJOR=clang-format-${REQUIRED_CLANG_FORMAT_MAJOR}