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

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

Issue 2180763002: gpu: Remove disable_multisampled_render_to_texture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bump version Created 4 years, 4 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 | « no previous file | gpu/command_buffer/service/feature_info.cc » ('j') | 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 import sys 4 import sys
5 from telemetry.story import story_set as story_set_module 5 from telemetry.story import story_set as story_set_module
6 from telemetry.page import page_test 6 from telemetry.page import page_test
7 7
8 from gpu_tests import gpu_test_base 8 from gpu_tests import gpu_test_base
9 9
10 class GpuProcessSharedPageState(gpu_test_base.GpuSharedPageState): 10 class GpuProcessSharedPageState(gpu_test_base.GpuSharedPageState):
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 310
311 class DriverBugWorkaroundsUponGLRendererPage(DriverBugWorkaroundsTestsPage): 311 class DriverBugWorkaroundsUponGLRendererPage(DriverBugWorkaroundsTestsPage):
312 def __init__(self, story_set, expectations): 312 def __init__(self, story_set, expectations):
313 self.expected_workaround = None 313 self.expected_workaround = None
314 self.unexpected_workaround = None 314 self.unexpected_workaround = None
315 315
316 if sys.platform in ('cygwin', 'win32'): 316 if sys.platform in ('cygwin', 'win32'):
317 self.expected_workaround = "texsubimage_faster_than_teximage" 317 self.expected_workaround = "texsubimage_faster_than_teximage"
318 self.unexpected_workaround = "disable_d3d11" 318 self.unexpected_workaround = "disable_d3d11"
319 elif sys.platform.startswith('linux'): 319 elif sys.platform.startswith('linux'):
320 self.expected_workaround = "disable_multisampled_render_to_texture" 320 self.expected_workaround = "disable_transparent_visuals"
321 elif sys.platform == 'darwin': 321 elif sys.platform == 'darwin':
322 pass 322 pass
323 super(DriverBugWorkaroundsUponGLRendererPage, self).__init__( 323 super(DriverBugWorkaroundsUponGLRendererPage, self).__init__(
324 name='GpuProcess.driver_bug_workarounds_upon_gl_renderer', 324 name='GpuProcess.driver_bug_workarounds_upon_gl_renderer',
325 page_set=story_set, 325 page_set=story_set,
326 shared_page_state_class=DriverBugWorkaroundsUponGLRendererShared, 326 shared_page_state_class=DriverBugWorkaroundsUponGLRendererShared,
327 expectations=expectations, 327 expectations=expectations,
328 expected_workaround=self.expected_workaround, 328 expected_workaround=self.expected_workaround,
329 unexpected_workaround=self.unexpected_workaround) 329 unexpected_workaround=self.unexpected_workaround)
330 330
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 if not is_platform_android: 606 if not is_platform_android:
607 self.AddStory(SkipGpuProcessPage(self, expectations)) 607 self.AddStory(SkipGpuProcessPage(self, expectations))
608 self.AddStory(HasTransparentVisualsGpuProcessPage(self, expectations)) 608 self.AddStory(HasTransparentVisualsGpuProcessPage(self, expectations))
609 self.AddStory(NoTransparentVisualsGpuProcessPage(self, expectations)) 609 self.AddStory(NoTransparentVisualsGpuProcessPage(self, expectations))
610 610
611 @property 611 @property
612 def allow_mixed_story_states(self): 612 def allow_mixed_story_states(self):
613 # Return True here in order to be able to run pages with different browser 613 # Return True here in order to be able to run pages with different browser
614 # command line arguments. 614 # command line arguments.
615 return True 615 return True
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698