blob: 417a0f90c1a4db4b0d3a7f9f9718fd834b424895 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <cstddef>
#include "flutter/fml/build_config.h"
#include "flutter/fml/macros.h"
namespace impeller {
constexpr size_t DefaultUniformAlignment() {
#if FML_OS_IOS && !TARGET_OS_SIMULATOR
return 16u;
#else
return 256u;
#endif
}
} // namespace impeller