glamor: Drop dead GLAMOR_FBO_DOWNLOADED flag.
Signed-off-by: Eric Anholt <eric@anholt.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
4472740941
commit
fe3fedf280
|
@ -314,11 +314,6 @@ enum glamor_fbo_state {
|
||||||
* point at anything.
|
* point at anything.
|
||||||
*/
|
*/
|
||||||
GLAMOR_FBO_NORMAL,
|
GLAMOR_FBO_NORMAL,
|
||||||
/**
|
|
||||||
* The FBO is present and can be accessed as a linear memory
|
|
||||||
* mapping through devPrivate.ptr.
|
|
||||||
*/
|
|
||||||
GLAMOR_FBO_DOWNLOADED,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct glamor_pixmap_fbo {
|
typedef struct glamor_pixmap_fbo {
|
||||||
|
|
|
@ -758,7 +758,6 @@ glamor_translate_boxes(BoxPtr boxes, int nbox, int dx, int dy)
|
||||||
|
|
||||||
#define GLAMOR_PIXMAP_PRIV_IS_PICTURE(pixmap_priv) (pixmap_priv && pixmap_priv->is_picture == 1)
|
#define GLAMOR_PIXMAP_PRIV_IS_PICTURE(pixmap_priv) (pixmap_priv && pixmap_priv->is_picture == 1)
|
||||||
#define GLAMOR_PIXMAP_PRIV_HAS_FBO(pixmap_priv) (pixmap_priv && pixmap_priv->gl_fbo == GLAMOR_FBO_NORMAL)
|
#define GLAMOR_PIXMAP_PRIV_HAS_FBO(pixmap_priv) (pixmap_priv && pixmap_priv->gl_fbo == GLAMOR_FBO_NORMAL)
|
||||||
#define GLAMOR_PIXMAP_PRIV_HAS_FBO_DOWNLOADED(pixmap_priv) (pixmap_priv && (pixmap_priv->gl_fbo == GLAMOR_FBO_DOWNLOADED))
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Borrow from uxa.
|
* Borrow from uxa.
|
||||||
|
|
Loading…
Reference in New Issue