Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/embree/common/math/col4.h
9912 views
1
// Copyright 2009-2021 Intel Corporation
2
// SPDX-License-Identifier: Apache-2.0
3
4
#pragma once
5
6
#include "emath.h"
7
8
namespace embree
9
{
10
////////////////////////////////////////////////////////////////////////////////
11
/// RGBA Color Class
12
////////////////////////////////////////////////////////////////////////////////
13
14
template<typename T> struct Col4
15
{
16
T r, g, b, a;
17
18
////////////////////////////////////////////////////////////////////////////////
19
/// Construction
20
////////////////////////////////////////////////////////////////////////////////
21
22
__forceinline Col4 ( ) { }
23
__forceinline Col4 ( const Col4& other ) { r = other.r; g = other.g; b = other.b; a = other.a; }
24
__forceinline Col4& operator=( const Col4& other ) { r = other.r; g = other.g; b = other.b; a = other.a; return *this; }
25
26
__forceinline explicit Col4 (const T& v) : r(v), g(v), b(v), a(v) {}
27
__forceinline Col4 (const T& r, const T& g, const T& b, const T& a) : r(r), g(g), b(b), a(a) {}
28
29
////////////////////////////////////////////////////////////////////////////////
30
/// Constants
31
////////////////////////////////////////////////////////////////////////////////
32
33
__forceinline Col4 (ZeroTy) : r(zero) , g(zero) , b(zero) , a(zero) {}
34
__forceinline Col4 (OneTy) : r(one) , g(one) , b(one) , a(one) {}
35
__forceinline Col4 (PosInfTy) : r(pos_inf), g(pos_inf), b(pos_inf), a(pos_inf) {}
36
__forceinline Col4 (NegInfTy) : r(neg_inf), g(neg_inf), b(neg_inf), a(neg_inf) {}
37
};
38
39
/*! output operator */
40
template<typename T> __forceinline embree_ostream operator<<(embree_ostream cout, const Col4<T>& a) {
41
return cout << "(" << a.r << ", " << a.g << ", " << a.b << ", " << a.a << ")";
42
}
43
44
/*! default template instantiations */
45
typedef Col4<unsigned char> Col4uc;
46
typedef Col4<float > Col4f;
47
}
48
49