Home | History | Annotate | Download | only in animation

Lines Matching defs:height

63 SkBitmap* AnimationThread::constructBitmap(int width, int height) {
65 bitmap->setConfig(SkBitmap::kARGB_8888_Config, width, height);
95 int width, height;
96 getDimensions(width, height);
98 if (m_bitmap->width() != width || m_bitmap->height() != height) {
101 m_bitmap = constructBitmap(width, height);
106 m_dy = height * .007f;
112 const float OH = height * .125f;
119 bounce(&m_y, &m_dy, height - OH);