summaryrefslogtreecommitdiffstats
path: root/hacks/glx/quickhull.h
diff options
context:
space:
mode:
authorSimon Rettberg2019-02-18 11:55:58 +0100
committerSimon Rettberg2019-02-18 11:55:58 +0100
commitaa7530630e595b80d5db54655fd827b61edc0fd7 (patch)
tree048cb74072450c7592f254c3537ac8f252d09d73 /hacks/glx/quickhull.h
parentForgot one DPMS killing instance (diff)
parentUpdate to 5.42 (diff)
downloadxscreensaver-23.tar.gz
xscreensaver-23.tar.xz
xscreensaver-23.zip
Merge branch 'master' into openslxv23
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;