// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40285824): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #include "remoting/client/display/gl_math.h" #include <sstream> namespace remoting { void TransposeTransformationMatrix(std::array<float, 9>* matrix) { … } void FillRectangleVertexPositions(float left, float top, float width, float height, std::array<float, 8>* positions) { … } std::string MatrixToString(const float* mat, int num_rows, int num_cols) { … } } // namespace remoting