chromium/remoting/client/ui/view_matrix.h

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_CLIENT_UI_VIEW_MATRIX_H_
#define REMOTING_CLIENT_UI_VIEW_MATRIX_H_

#include <array>

namespace remoting {

// A 2D non-skew equally scaled transformation matrix.
// | SCALE, 0,     OFFSET_X, |
// | 0,     SCALE, OFFSET_Y, |
// | 0,     0,     1         |
class ViewMatrix {};

}  // namespace remoting

#endif  // REMOTING_CLIENT_UI_VIEW_MATRIX_H_