diff options
author | Keuin <[email protected]> | 2022-04-14 14:08:09 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-04-14 14:08:09 +0800 |
commit | 977490e2b3a181796348ab1853a87cde7c92f676 (patch) | |
tree | 85a9bb06582e7c2e9ec00d41a1a57b1784ce05a5 /viewport.h | |
parent | 01f5ff46d222ee137a87a69cae430421e50c21b5 (diff) |
Remove viewport8b and basic_viewport8b.
Diffstat (limited to 'viewport.h')
-rw-r--r-- | viewport.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -48,8 +48,6 @@ public: virtual ~viewport() = default; }; -using viewport8b = viewport<uint8_t>; - // Single sampled viewport which supports bias sampling template<typename T> class basic_viewport : public viewport<T> { @@ -106,6 +104,4 @@ public: } }; -using basic_viewport8b = basic_viewport<uint8_t>; - #endif //RT_VIEWPORT_H |