summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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