Searched refs:supported_scales (Results 1 – 4 of 4) sorted by relevance
79 std::vector<float> supported_scales;80 supported_scales.push_back(supported_scale);81 gfx::ImageSkia::SetSupportedScales(supported_scales);
60 std::vector<float> supported_scales = ImageSkia::GetSupportedScales();63 for (size_t i = 0; i < supported_scales.size(); ++i) {64 float scale = supported_scales[i];
135 std::vector<float> supported_scales; in ImageSkiaTest() local136 supported_scales.push_back(1.0f); in ImageSkiaTest()137 supported_scales.push_back(2.0f); in ImageSkiaTest()138 ImageSkia::SetSupportedScales(supported_scales); in ImageSkiaTest()
297 void ImageSkia::SetSupportedScales(const std::vector<float>& supported_scales) { in SetSupportedScales() argument300 g_supported_scales = new std::vector<float>(supported_scales); in SetSupportedScales()