Lines Matching full:ctx
103 var ctx = canvas.getContext("2d");
105 SkJSCanvas ctx(canvas);
108 ctx.save();
109 ctx.lineWidth = 2;
110 ctx.beginPath();
111 ctx.moveTo(10, 100);
112 ctx.lineTo(150, 100);
113 ctx.lineTo(150, 15);
114 ctx.lineTo(10, 15);
115 ctx.closePath();
118 // ctx.moveTo(175, 125);
120 ctx.stroke();
121 ctx.restore();
123 ctx.fillText("As Expected", 10, 10);
129 ctx = canvas.getContext("2d");
134 ctx.save();
135 ctx.lineWidth = 2;
136 ctx.beginPath();
137 ctx.moveTo(10, 100);
138 ctx.lineTo(150, 100);
139 ctx.lineTo(150, 15);
140 ctx.lineTo(10, 15);
141 ctx.closePath();
143 ctx.moveTo(175, 125);
145 ctx.stroke();
146 ctx.restore();
148 ctx.fillText("Larger Rectangle", 10, 10);
154 ctx = canvas.getContext("2d");
159 ctx.save();
160 ctx.lineWidth = 1;
161 ctx.beginPath();
162 ctx.moveTo(10, 100);
163 ctx.lineTo(150, 100);
164 ctx.lineTo(150, 15);
165 ctx.lineTo(10, 15);
166 ctx.closePath();
168 ctx.moveTo(175, 125);
170 ctx.stroke();
171 ctx.restore();
173 ctx.fillText("As Expected - line width 1", 10, 10);