summaryrefslogtreecommitdiff
path: root/viewport.h
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-04-14 14:08:09 +0800
committerKeuin <[email protected]>2022-04-14 14:08:09 +0800
commit977490e2b3a181796348ab1853a87cde7c92f676 (patch)
tree85a9bb06582e7c2e9ec00d41a1a57b1784ce05a5 /viewport.h
parent01f5ff46d222ee137a87a69cae430421e50c21b5 (diff)
Remove viewport8b and basic_viewport8b.
Diffstat (limited to 'viewport.h')
-rw-r--r--viewport.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/viewport.h b/viewport.h
index 30a22dd..1e3eaf0 100644
--- a/viewport.h
+++ b/viewport.h
@@ -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