From b1e8889d969f5f88539c47c2afac6c9ea2a2dc11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 11 Oct 2016 20:44:26 +0200 Subject: dds/etc1/pbm/pvr: Make those modules and split thirdparty files They are not particularly packaged in Linux distros so we do not facilitate unbundling via SCons. There could be done if/when there is interest. Also s/pnm/pbm/, long-lived typo :) --- thirdparty/pvrtccompressor/Point2.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 thirdparty/pvrtccompressor/Point2.h (limited to 'thirdparty/pvrtccompressor/Point2.h') diff --git a/thirdparty/pvrtccompressor/Point2.h b/thirdparty/pvrtccompressor/Point2.h new file mode 100644 index 0000000000..89fa4b6322 --- /dev/null +++ b/thirdparty/pvrtccompressor/Point2.h @@ -0,0 +1,17 @@ +#pragma once + +namespace Javelin { + +template +class Point2 { +public: + T x; + T y; + + Point2(int a, int b) + : x(a) + , y(b) { + } +}; + +} -- cgit v1.2.3