aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/skcms/src/LinearAlgebra.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/skcms/src/LinearAlgebra.h')
-rw-r--r--third_party/skcms/src/LinearAlgebra.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/third_party/skcms/src/LinearAlgebra.h b/third_party/skcms/src/LinearAlgebra.h
deleted file mode 100644
index 10b122645a..0000000000
--- a/third_party/skcms/src/LinearAlgebra.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright 2018 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#pragma once
-
-#include <stdbool.h>
-
-typedef struct { float vals[3]; } skcms_Vector3;
-
-// It is _not_ safe to alias the pointers to invert in-place.
-bool skcms_Matrix3x3_invert(const skcms_Matrix3x3*, skcms_Matrix3x3*);
-skcms_Matrix3x3 skcms_Matrix3x3_concat(const skcms_Matrix3x3* A, const skcms_Matrix3x3* B);
-
-skcms_Vector3 skcms_MV_mul(const skcms_Matrix3x3*, const skcms_Vector3*);