Lines Matching refs:scale
176 REAL scale; in test_scale() local
190 stat = GdipGetCustomLineCapWidthScale(NULL, &scale); in test_scale()
199 scale = (REAL)0xdeadbeef; in test_scale()
200 stat = GdipGetCustomLineCapWidthScale(custom, &scale); in test_scale()
202 expectf(1.0, scale); in test_scale()
207 scale = (REAL)0xdeadbeef; in test_scale()
208 stat = GdipGetCustomLineCapWidthScale(custom, &scale); in test_scale()
210 expectf(2.5, scale); in test_scale()
214 scale = (REAL)0xdeadbeef; in test_scale()
215 stat = GdipGetCustomLineCapWidthScale(custom, &scale); in test_scale()
217 expectf(42.0, scale); in test_scale()
221 scale = (REAL)0xdeadbeef; in test_scale()
222 stat = GdipGetCustomLineCapWidthScale(custom, &scale); in test_scale()
224 expectf(3000.0, scale); in test_scale()
228 scale = (REAL)0xdeadbeef; in test_scale()
229 stat = GdipGetCustomLineCapWidthScale(custom, &scale); in test_scale()
231 expectf(0.0, scale); in test_scale()
239 REAL inset, scale, height, width; in test_create_adjustable_cap() local
322 stat = GdipGetCustomLineCapWidthScale((GpCustomLineCap*)cap, &scale); in test_create_adjustable_cap()
324 ok(scale == 1.0f, "Unexpected width scale %f\n", scale); in test_create_adjustable_cap()