Blame c++/perspective/src/common.h

531f67
#ifndef COMMON_H
531f67
#define COMMON_H
531f67
531f67
#include <cmath></cmath>
531f67
#include <cstdlib></cstdlib>
531f67
531f67
531f67
typedef float ColorReal;
531f67
typedef double Real;
531f67
typedef int Int;
531f67
typedef unsigned int UInt;
531f67
typedef long long int LongInt;
531f67
typedef unsigned long long int ULongInt;
531f67
531f67
531f67
const Real realRrecision = 1e-10;
531f67
531f67
531f67
class Shared {
531f67
private:
531f67
	int ref_count;
531f67
public:
531f67
	Shared(): ref_count() { }
531f67
	Shared(const Shared&): ref_count() { }
531f67
	virtual ~Shared() { };
531f67
	
531f67
	inline Shared& operator=(const Shared&) { return *this; }
531f67
	inline void reference() { ++ref_count; }
531f67
	inline void unreference() { if (--ref_count <= 0) delete this; }
531f67
};
531f67
531f67
531f67
class Color {
531f67
public:
531f67
	typedef ColorReal Channel;
531f67
	union {
531f67
		struct { Channel channels[4]; };
531f67
		struct { Channel r, g, b, a; };
531f67
	};
531f67
	
531f67
	inline explicit Color(Channel r = 0.0, Channel g = 0.0, Channel b = 0.0, Channel a = 0.0):
531f67
		r(r), g(g), b(b), a(a) { }
531f67
};
531f67
531f67
531f67
inline int clz(const Int &x)
531f67
	{ return x ? __builtin_clz(x) : 32; }
531f67
inline int clz(const UInt &x)
531f67
	{ return x ? __builtin_clz(x) : 32; }
531f67
inline int clz(const LongInt &x)
531f67
	{ return x ? __builtin_clzll(x) : 64; }
531f67
inline int clz(const ULongInt &x)
531f67
	{ return x ? __builtin_clzll(x) : 64; }
531f67
531f67
531f67
inline Real flip_clamp(Real x) {
531f67
	x -= floor(0.5*x)*2.0;
531f67
	return 1.0 - fabs(1.0 - x);
531f67
}
531f67
531f67
#endif