Home | History | Annotate | Download | only in egl

Lines Matching refs:Visibility

44 	enum Visibility
61 Visibility visibility; //!< Visibility for window
63 WindowParams (void) : width(SIZE_DONT_CARE), height(SIZE_DONT_CARE), visibility(VISIBILITY_DONT_CARE) {}
64 WindowParams (int width_, int height_, Visibility visibility_) : width(width_), height(height_), visibility(visibility_) {}
110 // Change window visibility. Default throws tcu::NotSupportedError().
111 virtual void setVisibility (WindowParams::Visibility visibility);