12 lines
		
	
	
		
			439 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			439 B
		
	
	
	
		
			C++
		
	
	
	
| // Copyright 2019 Google LLC.
 | |
| // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
 | |
| #include "tools/fiddle/examples.h"
 | |
| // HASH=ab746d9be63975041ae8e50cba84dc3d
 | |
| REG_FIDDLE(Matrix_getScaleX, 256, 256, true, 0) {
 | |
| void draw(SkCanvas* canvas) {
 | |
|     SkMatrix matrix;
 | |
|     matrix.setScale(42, 24);
 | |
|     SkDebugf("matrix.getScaleX() %c= 42\n", matrix.getScaleX() == 42 ? '=' : '!');
 | |
| }
 | |
| }  // END FIDDLE
 |