Home | History | Annotate | Download | only in views

Lines Matching refs:Config

82 void SkWindow::setConfig(SkBitmap::Config config)
84 this->resize(fBitmap.width(), fBitmap.height(), config);
87 void SkWindow::resize(int width, int height, SkBitmap::Config config)
89 if (config == SkBitmap::kNo_Config)
90 config = fConfig;
92 if (width != fBitmap.width() || height != fBitmap.height() || config != fConfig)
94 fConfig = config;
95 fBitmap.setConfig(config, width, height);