summaryrefslogtreecommitdiffstats
path: root/hacks/glx/quickhull.h
diff options
context:
space:
mode:
authorSimon Rettberg2019-02-18 11:55:41 +0100
committerSimon Rettberg2019-02-18 11:55:41 +0100
commitae69a754244c4e475c8d2591772ca8e005071d83 (patch)
tree58b3fa7abc2dcfe3c23e1c0ce108950c720826ab /hacks/glx/quickhull.h
parentUpdate gitignore (diff)
downloadxscreensaver-ae69a754244c4e475c8d2591772ca8e005071d83.tar.gz
xscreensaver-ae69a754244c4e475c8d2591772ca8e005071d83.tar.xz
xscreensaver-ae69a754244c4e475c8d2591772ca8e005071d83.zip
Update to 5.42
Diffstat (limited to 'hacks/glx/quickhull.h')
-rw-r--r--hacks/glx/quickhull.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/hacks/glx/quickhull.h b/hacks/glx/quickhull.h
index 0dd0faa..161b74e 100644
--- a/hacks/glx/quickhull.h
+++ b/hacks/glx/quickhull.h
@@ -22,14 +22,9 @@
#define __QUICKHULL_H__
typedef struct qh_vertex {
- union {
- double v[3];
- struct {
- double x;
- double y;
- double z;
- };
- };
+ double x;
+ double y;
+ double z;
} qh_vertex_t;
typedef qh_vertex_t qh_vec3_t;