Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(822)

Side by Side Diff: content/test/gpu/page_sets/pixel_tests.py

Issue 2359263002: Fix a gpu pixel test for WebGL's commit() API (Closed)
Patch Set: main thread wait for worker to send back msg Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/test/data/gpu/pixel_offscreenCanvas_webgl_commit_worker.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from telemetry.story import story_set as story_set_module 5 from telemetry.story import story_set as story_set_module
6 6
7 import sys 7 import sys
8 8
9 from gpu_tests import gpu_test_base 9 from gpu_tests import gpu_test_base
10 10
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 test_rect=[0, 0, 300, 300], 180 test_rect=[0, 0, 300, 300],
181 revision=1, 181 revision=1,
182 story_set=self, 182 story_set=self,
183 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState, 183 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState,
184 expectations=expectations)) 184 expectations=expectations))
185 185
186 self.AddStory(PixelTestsPage( 186 self.AddStory(PixelTestsPage(
187 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_worker.html' , 187 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_worker.html' ,
188 name=base_name + '.OffscreenCanvasWebGLRedBoxWorker' + es3_suffix, 188 name=base_name + '.OffscreenCanvasWebGLRedBoxWorker' + es3_suffix,
189 test_rect=[0, 0, 300, 300], 189 test_rect=[0, 0, 300, 300],
190 revision=1, 190 revision=2,
191 story_set=self, 191 story_set=self,
192 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState, 192 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState,
193 expectations=expectations)) 193 expectations=expectations))
194 194
195 self.AddStory(PixelTestsPage( 195 self.AddStory(PixelTestsPage(
196 url='file://../../data/gpu/pixel_canvas2d.html', 196 url='file://../../data/gpu/pixel_canvas2d.html',
197 name=base_name + '.Canvas2DRedBox' + es3_suffix, 197 name=base_name + '.Canvas2DRedBox' + es3_suffix,
198 test_rect=[0, 0, 300, 300], 198 test_rect=[0, 0, 300, 300],
199 revision=7, 199 revision=7,
200 story_set=self, 200 story_set=self,
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 story_set=self, 273 story_set=self,
274 shared_page_state_class=shared_page_state_class, 274 shared_page_state_class=shared_page_state_class,
275 expectations=expectations)) 275 expectations=expectations))
276 276
277 @property 277 @property
278 def allow_mixed_story_states(self): 278 def allow_mixed_story_states(self):
279 # Return True here in order to be able to add the same tests with 279 # Return True here in order to be able to add the same tests with
280 # a different SharedPageState on Mac which tests them with the 280 # a different SharedPageState on Mac which tests them with the
281 # Core Profile rendering path. 281 # Core Profile rendering path.
282 return True 282 return True
OLDNEW
« no previous file with comments | « content/test/data/gpu/pixel_offscreenCanvas_webgl_commit_worker.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698