Lines Matching refs:location

96       var location = y * this.width * 4 + x*8*4;
100 this.data[location+i*4] = rgb.red;
101 this.data[location+i*4 + 1] = rgb.green;
102 this.data[location+i*4 + 2] = rgb.blue;
103 this.data[location+i*4 + 3] = 0xFF;
122 var location = y * this.width * 4 + x*2*4;
128 this.data[location] = rgb.red;
129 this.data[location + 1] = rgb.green;
130 this.data[location + 2] = rgb.blue;
131 this.data[location + 3] = 0xFF;
136 this.data[location+4] = rgb.red;
137 this.data[location+4 + 1] = rgb.green;
138 this.data[location+4 + 2] = rgb.blue;
139 this.data[location+4 + 3] = 0xFF;
154 var location = y * this.width * 4 + x*4;
157 this.data[location] = rgb.red;
158 this.data[location + 1] = rgb.green;
159 this.data[location + 2] = rgb.blue;
160 this.data[location + 3] = 0xFF;
162 this.data[location] = 0xFF;
163 this.data[location + 1] = 0xFF;
164 this.data[location + 2] = 0xFF;
165 this.data[location + 3] = 0xFF;
192 var location = y * this.width * 4 + x * 4;
193 this.data[location] = red;
194 this.data[location + 1] = green;
195 this.data[location + 2] = blue;
196 this.data[location + 3] = alpha;
222 var location = y * this.width * 4 + x * 4;
223 this.data[location] = red;
224 this.data[location + 1] = green;
225 this.data[location + 2] = blue;
226 this.data[location + 3] = alpha;
245 var location = y * this.width * 4 + x * 4;
246 this.data[location] = red;
247 this.data[location + 1] = green;
248 this.data[location + 2] = blue;
249 this.data[location + 3] = 0xFF;
269 var location = y * this.width * 4 + x * 4;
271 this.data[location] = red;
272 this.data[location + 1] = green;
273 this.data[location + 2] = blue;
274 this.data[location + 3] = alpha;