1# Copyright 2020 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5PY_VERSION = 3
6AUTHOR = "chromeos-gfx"
7NAME = "graphics_HwOverlays.SkiaRenderer.canvas2DLowLatency"
8TIME = "SHORT"
9TEST_CATEGORY = "Functional"
10TEST_CLASS = "graphics"
11TEST_TYPE = "client"
12
13ATTRIBUTES = "suite:bvt-perbuild"
14
15HTML_TEST_FILE = 'canvas_2d_low_latency.html'
16
17DOC = """
18Runs a very simple HTML canvas 2D test with low latency (creating the context
19and drawing a few strokes) and inspects the amount of hardware overlays
20reported by the system. This test forces the use of the SkiaRenderer.
21"""
22
23job.run_test('graphics_HwOverlays',
24             html_file=HTML_TEST_FILE,
25             use_skia_renderer=True)
26