chromium/third_party/angle/src/tests/gl_tests/gles1/MatrixMultTest.cpp

//
// Copyright 2018 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// MatrixMultTest.cpp: Tests basic usage of glMultMatrix(f|x).

#include "test_utils/ANGLETest.h"
#include "test_utils/gl_raii.h"

#include "common/matrix_utils.h"
#include "util/random_utils.h"

#include <stdint.h>

usingnamespaceangle;

class MatrixMultTest : public ANGLETest<>
{};

// Multiplies identity matrix with itself.
TEST_P(MatrixMultTest, Identity)
{}

// Multiplies translation matrix and checks matrix underneath in stack is not affected.
TEST_P(MatrixMultTest, Translation)
{}

ANGLE_INSTANTIATE_TEST_ES1();