Lines Matching refs:Color8
37 m_OnColor( nw::ut::Color8::BLACK ), in SmButton()
38 m_OffColor( nw::ut::Color8::RED ) in SmButton()
46 m_Button->SetVertex( 0, x, y, nw::ut::Color8::BLACK ); in SmButton()
47 m_Button->SetVertex( 1, x, y + h, nw::ut::Color8::BLACK ); in SmButton()
48 m_Button->SetVertex( 2, x + w, y, nw::ut::Color8::BLACK ); in SmButton()
49 m_Button->SetVertex( 3, x + w, y + h, nw::ut::Color8::BLACK ); in SmButton()
58 …->SetVertex( 0, x - PRESSED_BTN_MARGIN, y - PRESSED_BTN_MARGIN, nw::ut::Color8::YELLOW ); in SmButton()
59 …->SetVertex( 1, x - PRESSED_BTN_MARGIN, y + h + PRESSED_BTN_MARGIN, nw::ut::Color8::YELLOW ); in SmButton()
60 …->SetVertex( 2, x + w + PRESSED_BTN_MARGIN, y - PRESSED_BTN_MARGIN, nw::ut::Color8::YELLOW ); in SmButton()
61 …->SetVertex( 3, x + w + PRESSED_BTN_MARGIN, y + h + PRESSED_BTN_MARGIN, nw::ut::Color8::YELLOW ); in SmButton()
142 void SmButton::SetColor( nw::ut::Color8 onColor, nw::ut::Color8 offColor ) in SetColor()