blob: a4c1fa0c07c883cdf73dc200b295915d7f7f1232 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gl/gl_surface_format.h"
namespace gl {
TEST(GLSurfaceFormatTest, BasicTest) {
{
// Check default format properties.
GLSurfaceFormat format = GLSurfaceFormat();
EXPECT_EQ(32, format.GetBufferSize());
}
{
// Check rgb565 format as used for low-end Android devices.
GLSurfaceFormat format = GLSurfaceFormat();
format.SetRGB565();
EXPECT_EQ(16, format.GetBufferSize());
}
{
// Check IsCompatible
GLSurfaceFormat format = GLSurfaceFormat();
EXPECT_TRUE(format.IsCompatible(GLSurfaceFormat()));
GLSurfaceFormat other = GLSurfaceFormat();
other.SetRGB565();
EXPECT_FALSE(format.IsCompatible(other));
EXPECT_TRUE(other.IsCompatible(other));
}
}
}