Lines Matching full:orientation

70 	enum display_orientation orientation;  member
329 if (data->orientation == DISPLAY_ORIENTATION_NORMAL || in ssd16xx_set_window()
330 data->orientation == DISPLAY_ORIENTATION_ROTATED_180) { in ssd16xx_set_window()
372 switch (data->orientation) { in ssd16xx_set_window()
569 if (data->orientation == DISPLAY_ORIENTATION_NORMAL || in ssd16xx_get_capabilities()
570 data->orientation == DISPLAY_ORIENTATION_ROTATED_180) { in ssd16xx_get_capabilities()
574 caps->current_orientation = data->orientation; in ssd16xx_get_capabilities()
589 const enum display_orientation orientation) in ssd16xx_set_orientation() argument
594 if (orientation == DISPLAY_ORIENTATION_NORMAL) { in ssd16xx_set_orientation()
596 } else if (orientation == DISPLAY_ORIENTATION_ROTATED_90) { in ssd16xx_set_orientation()
598 } else if (orientation == DISPLAY_ORIENTATION_ROTATED_180) { in ssd16xx_set_orientation()
600 } else if (orientation == DISPLAY_ORIENTATION_ROTATED_270) { in ssd16xx_set_orientation()
609 data->orientation = orientation; in ssd16xx_set_orientation()
851 enum display_orientation orientation; in ssd16xx_controller_init() local
882 orientation = DISPLAY_ORIENTATION_NORMAL; in ssd16xx_controller_init()
884 orientation = DISPLAY_ORIENTATION_ROTATED_90; in ssd16xx_controller_init()
886 orientation = DISPLAY_ORIENTATION_ROTATED_180; in ssd16xx_controller_init()
888 orientation = DISPLAY_ORIENTATION_ROTATED_270; in ssd16xx_controller_init()
891 err = ssd16xx_set_orientation(dev, orientation); in ssd16xx_controller_init()