diff options
author | Keith Packard <keithp@keithp.com> | 2014-10-29 22:54:27 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2015-03-24 12:32:46 -0700 |
commit | 9ef5cbf8ab8a51941d469bfcaca6cbfb7838d1ef (patch) | |
tree | 88b43fa83690bfa83afa5b1fedada51bbfea7b91 /glamor | |
parent | af687396f1875de0a45683aad4fd5a9a2e00f10d (diff) |
glamor: Remove unused glamor_pixmap_private_atlas_t
Signed-off-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'glamor')
-rw-r--r-- | glamor/glamor_priv.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/glamor/glamor_priv.h b/glamor/glamor_priv.h index c5c6bb3a2..e9b05bbfa 100644 --- a/glamor/glamor_priv.h +++ b/glamor/glamor_priv.h @@ -486,23 +486,11 @@ typedef struct glamor_pixmap_private_large { glamor_pixmap_fbo **fbo_array; } glamor_pixmap_private_large_t; -/* - * @box: the relative coords in the corresponding fbo. - */ -typedef struct glamor_pixmap_private_atlas { - union { - glamor_pixmap_type_t type; - glamor_pixmap_private_base_t base; - }; - BoxRec box; -} glamor_pixmap_private_atlas_t; - typedef struct glamor_pixmap_private { union { glamor_pixmap_type_t type; glamor_pixmap_private_base_t base; glamor_pixmap_private_large_t large; - glamor_pixmap_private_atlas_t atlas; }; } glamor_pixmap_private; |