#include <gtest/gtest.h>
#include "libANGLE/angletypes.h"
namespace angle
{
#if defined(ANGLE_IS_64_BIT_CPU)
constexpr bool is64Bit = …;
#else
constexpr bool is64Bit = false;
#endif
TEST(BlendStateExt, Init)
{ … }
TEST(BlendStateExt, BlendEnabled)
{ … }
void validateMaskPacking(const uint8_t packed,
const bool r,
const bool g,
const bool b,
const bool a)
{ … }
TEST(BlendStateExt, ColorMaskPacking)
{ … }
TEST(BlendStateExt, ColorMask)
{ … }
TEST(BlendStateExt, BlendEquations)
{ … }
TEST(BlendStateExt, BlendFactors)
{ … }
TEST(Rectangle, Clip)
{ … }
TEST(Rectangle, Combine)
{ … }
TEST(Rectangle, Extend)
{ … }
}