summaryrefslogtreecommitdiff
path: root/include/glu3.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/glu3.h')
-rw-r--r--include/glu3.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/glu3.h b/include/glu3.h
index 0039565..ea59c51 100644
--- a/include/glu3.h
+++ b/include/glu3.h
@@ -342,11 +342,6 @@ public:
void orientation(bool outside);
/**
- * Select per-vertex or per-polygon normals
- */
- void normals(bool per_vertex);
-
- /**
* Get the number of vertices in the shape
*
* This can be used in the constructor for derived classes, for
@@ -384,12 +379,11 @@ public:
protected:
GLUshapeProducer(void) :
- normals_point_out(true), normals_per_vertex(true)
+ normals_point_out(true)
{
}
bool normals_point_out;
- bool normals_per_vertex;
};