diff --git a/.gitlab-ci/skqp-runner.sh b/.gitlab-ci/skqp-runner.sh
deleted file mode 100755
index 0a64da574d0b83210dec05c482a50d860f19fc82..0000000000000000000000000000000000000000
--- a/.gitlab-ci/skqp-runner.sh
+++ /dev/null
@@ -1,371 +0,0 @@
-#!/bin/bash
-#
-# Copyright (C) 2022 Collabora Limited
-# Author: Guilherme Gallo <guilherme.gallo@collabora.com>
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Args:
-# $1: section id
-# $2: section header
-gitlab_section_start() {
-    echo -e "\e[0Ksection_start:$(date +%s):$1[collapsed=${GL_COLLAPSED:-false}]\r\e[0K\e[32;1m$2\e[0m"
-}
-
-# Args:
-# $1: section id
-gitlab_section_end() {
-        echo -e "\e[0Ksection_end:$(date +%s):$1\r\e[0K"
-}
-
-
-# sponge allows piping to files that are being used as input.
-# E.g.: sort file.txt | sponge file.txt
-# In order to avoid installing moreutils just to have the sponge binary, we can
-# use a bash function for it
-# Source https://unix.stackexchange.com/a/561346/310927
-sponge () (
-    set +x
-    append=false
-
-    while getopts 'a' opt; do
-        case $opt in
-            a) append=true ;;
-            *) echo error; exit 1
-        esac
-    done
-    shift "$(( OPTIND - 1 ))"
-
-    outfile=$1
-
-    tmpfile=$(mktemp "$(dirname "$outfile")/tmp-sponge.XXXXXXXX") &&
-    cat >"$tmpfile" &&
-    if "$append"; then
-        cat "$tmpfile" >>"$outfile"
-    else
-        if [ -f "$outfile" ]; then
-            chmod --reference="$outfile" "$tmpfile"
-        fi
-        if [ -f "$outfile" ]; then
-            mv "$tmpfile" "$outfile"
-        elif [ -n "$outfile" ] && [ ! -e "$outfile" ]; then
-            cat "$tmpfile" >"$outfile"
-        else
-            cat "$tmpfile"
-        fi
-    fi &&
-    rm -f "$tmpfile"
-)
-
-remove_comments_from_files() (
-    INPUT_FILES="$*"
-    for INPUT_FILE in ${INPUT_FILES}
-    do
-        [ -f "${INPUT_FILE}" ] || continue
-        sed -i '/#/d' "${INPUT_FILE}"
-        sed -i '/^\s*$/d' "${INPUT_FILE}"
-    done
-)
-
-subtract_test_lists() (
-    MINUEND=$1
-    sort "${MINUEND}" | sponge "${MINUEND}"
-    shift
-    for SUBTRAHEND in "$@"
-    do
-        sort "${SUBTRAHEND}" | sponge "${SUBTRAHEND}"
-        join -v 1 "${MINUEND}" "${SUBTRAHEND}" |
-            sponge "${MINUEND}"
-    done
-)
-
-merge_rendertests_files() {
-    BASE_FILE=$1
-    shift
-    FILES="$*"
-    # shellcheck disable=SC2086
-    cat $FILES "$BASE_FILE" |
-        sort --unique --stable --field-separator=, --key=1,1 |
-        sponge "$BASE_FILE"
-}
-
-assure_files() (
-    for CASELIST_FILE in $*
-    do
-        >&2 echo "Looking for ${CASELIST_FILE}..."
-        [ -f ${CASELIST_FILE} ] || (
-            >&2 echo "Not found. Creating empty."
-            touch ${CASELIST_FILE}
-        )
-    done
-)
-
-# Generate rendertests from scratch, customizing with fails/flakes/crashes files
-generate_rendertests() (
-    set -e
-    GENERATED_FILE=$(mktemp)
-    TESTS_FILE_PREFIX="${SKQP_FILE_PREFIX}-${SKQP_BACKEND}_rendertests"
-    FLAKES_FILE="${TESTS_FILE_PREFIX}-flakes.txt"
-    FAILS_FILE="${TESTS_FILE_PREFIX}-fails.txt"
-    CRASHES_FILE="${TESTS_FILE_PREFIX}-crashes.txt"
-    RENDER_TESTS_FILE="${TESTS_FILE_PREFIX}.txt"
-
-    # Default to an empty known flakes file if it doesn't exist.
-    assure_files ${FLAKES_FILE} ${FAILS_FILE} ${CRASHES_FILE}
-
-    # skqp does not support comments in rendertests.txt file
-    remove_comments_from_files "${FLAKES_FILE}" "${FAILS_FILE}" "${CRASHES_FILE}"
-
-    # create an exhaustive rendertest list
-    "${SKQP_BIN_DIR}"/list_gms | sort > "$GENERATED_FILE"
-
-    # Remove undesirable tests from the list
-    subtract_test_lists "${GENERATED_FILE}" "${CRASHES_FILE}" "${FLAKES_FILE}"
-
-    # Add ",0" to each test to set the expected diff sum to zero
-    sed -i 's/$/,0/g' "$GENERATED_FILE"
-
-    merge_rendertests_files "$GENERATED_FILE" "${FAILS_FILE}"
-
-    mv "${GENERATED_FILE}" "${RENDER_TESTS_FILE}"
-
-    echo "${RENDER_TESTS_FILE}"
-)
-
-generate_unittests() (
-    set -e
-    GENERATED_FILE=$(mktemp)
-    TESTS_FILE_PREFIX="${SKQP_FILE_PREFIX}_unittests"
-    FLAKES_FILE="${TESTS_FILE_PREFIX}-flakes.txt"
-    FAILS_FILE="${TESTS_FILE_PREFIX}-fails.txt"
-    CRASHES_FILE="${TESTS_FILE_PREFIX}-crashes.txt"
-    UNIT_TESTS_FILE="${TESTS_FILE_PREFIX}.txt"
-
-    # Default to an empty known flakes file if it doesn't exist.
-    assure_files ${FLAKES_FILE} ${FAILS_FILE} ${CRASHES_FILE}
-
-    # Remove unitTest_ prefix
-    for UT_FILE in "${FAILS_FILE}" "${CRASHES_FILE}" "${FLAKES_FILE}"; do
-        sed -i 's/^unitTest_//g' "${UT_FILE}"
-    done
-
-    # create an exhaustive unittests list
-    "${SKQP_BIN_DIR}"/list_gpu_unit_tests > "${GENERATED_FILE}"
-
-    # Remove undesirable tests from the list
-    subtract_test_lists "${GENERATED_FILE}" "${CRASHES_FILE}" "${FLAKES_FILE}" "${FAILS_FILE}"
-
-    remove_comments_from_files "${GENERATED_FILE}"
-    mv "${GENERATED_FILE}" "${UNIT_TESTS_FILE}"
-
-    echo "${UNIT_TESTS_FILE}"
-)
-
-run_all_tests() {
-    rm -f "${SKQP_ASSETS_DIR}"/skqp/*.txt
-}
-
-copy_tests_files() (
-    # Copy either unit test or render test files from a specific driver given by
-    # GPU VERSION variable.
-    # If there is no test file at the expected location, this function will
-    # return error_code 1
-    SKQP_BACKEND="${1}"
-    SKQP_FILE_PREFIX="${INSTALL}/${GPU_VERSION}-skqp"
-
-    if echo "${SKQP_BACKEND}" | grep -qE 'vk|gl(es)?'
-    then
-        echo "Generating rendertests.txt file"
-        GENERATED_RENDERTESTS=$(generate_rendertests)
-        cp "${GENERATED_RENDERTESTS}" "${SKQP_ASSETS_DIR}"/skqp/rendertests.txt
-        mkdir -p "${SKQP_RESULTS_DIR}/${SKQP_BACKEND}"
-        cp "${GENERATED_RENDERTESTS}" "${SKQP_RESULTS_DIR}/${SKQP_BACKEND}/generated_rendertests.txt"
-        return 0
-    fi
-
-    # The unittests.txt path is hardcoded inside assets directory,
-    # that is why it needs to be a special case.
-    if echo "${SKQP_BACKEND}" | grep -qE "unitTest"
-    then
-        echo "Generating unittests.txt file"
-        GENERATED_UNITTESTS=$(generate_unittests)
-        cp "${GENERATED_UNITTESTS}" "${SKQP_ASSETS_DIR}"/skqp/unittests.txt
-        mkdir -p "${SKQP_RESULTS_DIR}/${SKQP_BACKEND}"
-        cp "${GENERATED_UNITTESTS}" "${SKQP_RESULTS_DIR}/${SKQP_BACKEND}/generated_unittests.txt"
-    fi
-)
-
-resolve_tests_files() {
-    if [ -n "${RUN_ALL_TESTS}" ]
-    then
-        run_all_tests
-        return
-    fi
-
-    SKQP_BACKEND=${1}
-    if ! copy_tests_files "${SKQP_BACKEND}"
-    then
-        echo "No override test file found for ${SKQP_BACKEND}. Using the default one."
-    fi
-}
-
-test_vk_backend() {
-    if echo "${SKQP_BACKENDS:?}" | grep -qE 'vk'
-    then
-        if [ -n "$VK_DRIVER" ]; then
-            return 0
-        fi
-
-        echo "VK_DRIVER environment variable is missing."
-        # shellcheck disable=SC2012
-        VK_DRIVERS=$(ls "$INSTALL"/share/vulkan/icd.d/ | cut -f 1 -d '_')
-        if [ -n "${VK_DRIVERS}" ]
-        then
-            echo "Please set VK_DRIVER to the correct driver from the list:"
-            echo "${VK_DRIVERS}"
-        fi
-        echo "No Vulkan tests will be executed, but it was requested in SKQP_BACKENDS variable. Exiting."
-        exit 2
-    fi
-
-    # Vulkan environment is not configured, but it was not requested by the job
-    return 1
-}
-
-setup_backends() {
-    if test_vk_backend
-    then
-        export VK_ICD_FILENAMES="$INSTALL"/share/vulkan/icd.d/"$VK_DRIVER"_icd."${VK_CPU:-$(uname -m)}".json
-    fi
-}
-
-show_reports() (
-    set +xe
-
-    # Unit tests produce empty HTML reports, guide the user to check the TXT file.
-    if echo "${SKQP_BACKENDS}" | grep -qE "unitTest"
-    then
-        # Remove the empty HTML report to avoid confusion
-        rm -f "${SKQP_RESULTS_DIR}"/unitTest/report.html
-
-        echo "See skqp unit test results at:"
-        echo "https://$CI_PROJECT_ROOT_NAMESPACE.pages.freedesktop.org/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts${SKQP_RESULTS_DIR}/unitTest/unit_tests.txt"
-    fi
-
-    REPORT_FILES=$(mktemp)
-    find "${SKQP_RESULTS_DIR}"/**/report.html -type f > "${REPORT_FILES}"
-    while read -r REPORT
-    do
-        # shellcheck disable=SC2001
-        BACKEND_NAME=$(echo "${REPORT}" | sed  's@.*/\([^/]*\)/report.html@\1@')
-        echo "See skqp ${BACKEND_NAME} render tests report at:"
-        echo "https://$CI_PROJECT_ROOT_NAMESPACE.pages.freedesktop.org/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts${REPORT}"
-    done < "${REPORT_FILES}"
-
-    # If there is no report available, tell the user that something is wrong.
-    if [ ! -s "${REPORT_FILES}" ]
-    then
-        echo "No skqp report available. Probably some fatal error has occured during the skqp execution."
-    fi
-)
-
-usage() {
-    cat <<EOF
-    Usage: $(basename "$0") [-a]
-
-    Arguments:
-        -a: Run all unit tests and render tests, useful when introducing a new driver to skqp.
-EOF
-}
-
-parse_args() {
-    while getopts ':ah' opt; do
-        case "$opt" in
-            a)
-            echo "Running all skqp tests"
-            export RUN_ALL_TESTS=1
-            shift
-            ;;
-
-            h)
-            usage
-            exit 0
-            ;;
-
-            ?)
-            echo "Invalid command option."
-            usage
-            exit 1
-            ;;
-        esac
-    done
-}
-
-set -e
-
-parse_args "${@}"
-
-# Needed so configuration files can contain paths to files in /install
-INSTALL="$CI_PROJECT_DIR"/install
-
-if [ -z "$GPU_VERSION" ]; then
-    echo 'GPU_VERSION must be set to something like "llvmpipe" or
-"freedreno-a630" (it will serve as a component to find the path for files
-residing in src/**/ci/*.txt)'
-    exit 1
-fi
-
-LD_LIBRARY_PATH=$INSTALL:$LD_LIBRARY_PATH
-setup_backends
-
-SKQP_BIN_DIR=${SKQP_BIN_DIR:-/skqp}
-SKQP_ASSETS_DIR="${SKQP_BIN_DIR}"/assets
-SKQP_RESULTS_DIR="${SKQP_RESULTS_DIR:-${PWD}/results}"
-
-mkdir -p "${SKQP_ASSETS_DIR}"/skqp
-
-# Show the reports on exit, even when a test crashes
-trap show_reports INT TERM EXIT
-
-SKQP_EXITCODE=0
-for SKQP_BACKEND in ${SKQP_BACKENDS}
-do
-    resolve_tests_files "${SKQP_BACKEND}"
-    SKQP_BACKEND_RESULTS_DIR="${SKQP_RESULTS_DIR}"/"${SKQP_BACKEND}"
-    mkdir -p "${SKQP_BACKEND_RESULTS_DIR}"
-    BACKEND_EXITCODE=0
-
-    GL_COLLAPSED=true gitlab_section_start "skqp_${SKQP_BACKEND}" "skqp logs for ${SKQP_BACKEND}"
-    "${SKQP_BIN_DIR}"/skqp "${SKQP_ASSETS_DIR}" "${SKQP_BACKEND_RESULTS_DIR}" "${SKQP_BACKEND}_" ||
-        BACKEND_EXITCODE=$?
-    gitlab_section_end "skqp_${SKQP_BACKEND}"
-
-    if [ ! $BACKEND_EXITCODE -eq 0 ]
-    then
-        echo "skqp failed on ${SKQP_BACKEND} tests with exit code: ${BACKEND_EXITCODE}."
-    else
-        echo "skqp succeeded on ${SKQP_BACKEND}."
-    fi
-
-    # Propagate error codes to leverage the final job result
-    SKQP_EXITCODE=$(( SKQP_EXITCODE | BACKEND_EXITCODE ))
-done
-
-exit $SKQP_EXITCODE
diff --git a/.gitlab-ci/test/gitlab-ci.yml b/.gitlab-ci/test/gitlab-ci.yml
index ae8a02177757af1971b6960e8bf6ab62f89c5ec4..ac0a237e0fb8617b26e3e7ab57391207b0659c6b 100644
--- a/.gitlab-ci/test/gitlab-ci.yml
+++ b/.gitlab-ci/test/gitlab-ci.yml
@@ -109,11 +109,6 @@ rustfmt:
   variables:
     DEQP_VER: vk
 
-.skqp-test:
-  variables:
-    HWCI_START_XORG: 1
-    HWCI_TEST_SCRIPT: "/install/skqp-runner.sh"
-
 .fossilize-test:
   script:
     - ./install/fossilize-runner.sh
diff --git a/docs/ci/skqp.rst b/docs/ci/skqp.rst
index 0af11df9f5e39a2ace2fb39125af30b5a29ef236..b4bfc307c8b04746a8f40d8a2b1786ade3c1c763 100644
--- a/docs/ci/skqp.rst
+++ b/docs/ci/skqp.rst
@@ -8,94 +8,26 @@ device.
 
 The rendering tests have support for GL, GLES and Vulkan backends and test some
 rendering scenarios.
-And the unit tests check the GPU behavior without rendering images.
-
-Tests
------
-
-Render tests design
-^^^^^^^^^^^^^^^^^^^
-
-It is worth noting that ``rendertests.txt`` can bring some detail about each test
-expectation, so each test can have a max pixel error count, to tell SkQP that it
-is OK to have at most that number of errors for that test. See also:
-https://github.com/google/skia/blob/c29454d1c9ebed4758a54a69798869fa2e7a36e0/tools/skqp/README_ALGORITHM.md
-
-.. _test-location:
-
-Location
-^^^^^^^^
-
-Each ``rendertests.txt`` and ``unittest.txt`` file must be located inside a specific
-subdirectory inside SkQP assets directory.
-
-+--------------+---------------------------------------------+
-| Test type    | Location                                    |
-+==============+=============================================+
-| Render tests | ``${SKQP_ASSETS_DIR}/skqp/rendertests.txt`` |
-+--------------+---------------------------------------------+
-| Unit tests   | ``${SKQP_ASSETS_DIR}/skqp/unittests.txt``   |
-+--------------+---------------------------------------------+
-
-The ``skqp-runner.sh`` script will make the necessary modifications to separate
-``rendertests.txt`` for each backend-driver combination. As long as the test files are located in the expected place:
-
-+--------------+------------------------------------------------------------------------------------------------+
-| Test type    | Location                                                                                       |
-+==============+================================================================================================+
-| Render tests | ``${MESA_REPOSITORY_DIR}/src/${GPU_DRIVER}/ci/${GPU_VERSION}-${SKQP_BACKEND}_rendertests.txt`` |
-+--------------+------------------------------------------------------------------------------------------------+
-| Unit tests   | ``${MESA_REPOSITORY_DIR}/src/${GPU_DRIVER}/ci/${GPU_VERSION}_unittests.txt``                   |
-+--------------+------------------------------------------------------------------------------------------------+
-
-Where ``SKQP_BACKEND`` can be:
-
-- gl: for GL backend
-- gles: for GLES backend
-- vk: for Vulkan backend
-
-Example file
-""""""""""""
-
-.. code-block:: console
-
-  src/freedreno/ci/freedreno-a630-skqp-gl_rendertests.txt
-
-- GPU_DRIVER: ``freedreno``
-- GPU_VERSION: ``freedreno-a630``
-- SKQP_BACKEND: ``gl``
-
-.. _rendertests-design:
+And the unit tests check the GPU behavior without rendering images, using any of the GL/GLES or Vulkan drivers.
 
 SkQP reports
 ------------
 
-SkQP generates reports after finishing its execution, they are located at the job
-artifacts results directory and are divided in subdirectories by rendering tests
-backends and unit
-tests. The job log has links to every generated report in order to facilitate
-the SkQP debugging.
-
-Maintaining SkQP on Mesa CI
----------------------------
-
-SkQP is built alongside with another binary, namely ``list_gpu_unit_tests``, it is
-located in the same folder where ``skqp`` binary is.
-
-This binary will generate the expected ``unittests.txt`` for the target GPU, so
-ideally it should be executed on every SkQP update and when a new device
-receives SkQP CI jobs.
-
-1. Generate target unit tests for the current GPU with :code:`./list_gpu_unit_tests > unittests.txt`
-
-2. Run SkQP job
-
-3. If there is a failing or crashing unit test, remove it from the corresponding ``unittests.txt``
+SkQP generates reports after finishing its execution, and deqp-runner collects
+them in the job artifacts results directory under the test name.  Click the
+'Browse' button from a failing job to get to them.
 
-4. If there is a crashing render test, remove it from the corresponding ``rendertests.txt``
+SkQP failing tests
+------------------
 
-5. If there is a failing render test, visually inspect the result from the HTML report
-    - If the render result is OK, update the max error count for that test
-    - Otherwise, or put ``-1`` in the same threshold, as seen in :ref:`rendertests-design`
+SkQP rendering tests will have a range of pixel values allowed for the driver's
+rendering for a given test.  This can make the "expected" image in the result
+output look rather strange, but you should be able to make sense of it knowing
+that.
 
-6. Remember to put the new tests files to the locations cited in :ref:`test-location`
+In SkQP itself, testcases can have increased failing pixel thresholds added to
+them to keep CI green when the rendering is "correct" but out of normal range.
+However, we don't support changing the thresholds in our testing.  Because any
+driver rendering not meeting the normal thresholds will trigger Android CTS
+failures, we treat them as failures and track them as expected failures the
+```*-fails.txt`` file.`
diff --git a/src/amd/ci/amd-raven-fails.txt b/src/amd/ci/amd-raven-fails.txt
new file mode 100644
index 0000000000000000000000000000000000000000..896601c202048c0721da77f889791aa78b8ff95b
--- /dev/null
+++ b/src/amd/ci/amd-raven-fails.txt
@@ -0,0 +1,4 @@
+# skqp failure:
+# SRGBReadWritePixels FAILED (7 errors)
+# ../../tests/SRGBReadWritePixelsTest.cpp:214	Could not create sRGB surface context. [OpenGL]
+SRGBReadWritePixels,Fail
diff --git a/src/amd/ci/amd-raven-skqp-gl_rendertests-fails.txt b/src/amd/ci/amd-raven-skqp-gl_rendertests-fails.txt
deleted file mode 100644
index fff269107e0603025c851e72a4b45e967bb962cf..0000000000000000000000000000000000000000
--- a/src/amd/ci/amd-raven-skqp-gl_rendertests-fails.txt
+++ /dev/null
@@ -1,466 +0,0 @@
-# Bad rendering
-
-arcs_as_paths,-1
-etc1,-1
-ovals_as_paths,-1
-
-# Acceptable error
-
-scale-pixels,1824
-
-# Model missing,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmap_subset_shader,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blurcircles,-1
-BlurDrawImage,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circles,-1
-circle_sizes,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-circular-clips,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clipcubic,-1
-clippedcubic2,-1
-clip_strokerect,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convexpaths,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convex-polygon-inset,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-CubicStroke,-1
-daa,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-dash_line_zero_off_interval,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-drawable,-1
-draw-atlas,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-draw_quad_set,-1
-drawregionmodes,-1
-drawTextRSXform,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancyblobunderline,-1
-fancy_gradients,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-imagealphathreshold_image,-1
-imageblur,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagefilters_xfermodes,-1
-image_from_yuv_textures,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-image-picture,-1
-imageresizetiled,-1
-image_scale_aligned,-1
-image-shader,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-OverStroke,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-patheffect,-1
-pathfill,-1
-path_huge_crbug_800804,-1
-pathinterior,-1
-pathinvfill,-1
-path_mask_cache,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-path-reverse,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotatedcubicpath,-1
-rotate_imagefilter,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-scaled_tilemodes_npot,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadows,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-sharedcorners,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-strokecircle,-1
-strokedlines,-1
-stroke-fill,-1
-strokerect,-1
-strokerects,-1
-stroke_rect_shader,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-text_scale_skew,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylargebitmap,-1
-verylarge_picture_image,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
-zeroPath,-1
diff --git a/src/amd/ci/amd-raven-skqp-gles_rendertests-fails.txt b/src/amd/ci/amd-raven-skqp-gles_rendertests-fails.txt
deleted file mode 100644
index fff269107e0603025c851e72a4b45e967bb962cf..0000000000000000000000000000000000000000
--- a/src/amd/ci/amd-raven-skqp-gles_rendertests-fails.txt
+++ /dev/null
@@ -1,466 +0,0 @@
-# Bad rendering
-
-arcs_as_paths,-1
-etc1,-1
-ovals_as_paths,-1
-
-# Acceptable error
-
-scale-pixels,1824
-
-# Model missing,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmap_subset_shader,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blurcircles,-1
-BlurDrawImage,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circles,-1
-circle_sizes,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-circular-clips,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clipcubic,-1
-clippedcubic2,-1
-clip_strokerect,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convexpaths,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convex-polygon-inset,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-CubicStroke,-1
-daa,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-dash_line_zero_off_interval,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-drawable,-1
-draw-atlas,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-draw_quad_set,-1
-drawregionmodes,-1
-drawTextRSXform,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancyblobunderline,-1
-fancy_gradients,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-imagealphathreshold_image,-1
-imageblur,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagefilters_xfermodes,-1
-image_from_yuv_textures,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-image-picture,-1
-imageresizetiled,-1
-image_scale_aligned,-1
-image-shader,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-OverStroke,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-patheffect,-1
-pathfill,-1
-path_huge_crbug_800804,-1
-pathinterior,-1
-pathinvfill,-1
-path_mask_cache,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-path-reverse,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotatedcubicpath,-1
-rotate_imagefilter,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-scaled_tilemodes_npot,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadows,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-sharedcorners,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-strokecircle,-1
-strokedlines,-1
-stroke-fill,-1
-strokerect,-1
-strokerects,-1
-stroke_rect_shader,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-text_scale_skew,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylargebitmap,-1
-verylarge_picture_image,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
-zeroPath,-1
diff --git a/src/amd/ci/amd-raven-skqp-vk_rendertests-fails.txt b/src/amd/ci/amd-raven-skqp-vk_rendertests-fails.txt
deleted file mode 100644
index 31abea3def35de5101b1a15d747be5da268a6d1b..0000000000000000000000000000000000000000
--- a/src/amd/ci/amd-raven-skqp-vk_rendertests-fails.txt
+++ /dev/null
@@ -1,462 +0,0 @@
-# Bad rendering
-
-arcs_as_paths,-1
-etc1,-1
-ovals_as_paths,-1
-
-# Model missing,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmap_subset_shader,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blurcircles,-1
-BlurDrawImage,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circles,-1
-circle_sizes,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-circular-clips,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clipcubic,-1
-clippedcubic2,-1
-clip_strokerect,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convexpaths,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convex-polygon-inset,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-CubicStroke,-1
-daa,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-dash_line_zero_off_interval,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-drawable,-1
-draw-atlas,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-draw_quad_set,-1
-drawregionmodes,-1
-drawTextRSXform,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancyblobunderline,-1
-fancy_gradients,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-imagealphathreshold_image,-1
-imageblur,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagefilters_xfermodes,-1
-image_from_yuv_textures,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-image-picture,-1
-imageresizetiled,-1
-image_scale_aligned,-1
-image-shader,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-OverStroke,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-patheffect,-1
-pathfill,-1
-path_huge_crbug_800804,-1
-pathinterior,-1
-pathinvfill,-1
-path_mask_cache,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-path-reverse,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotatedcubicpath,-1
-rotate_imagefilter,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-scaled_tilemodes_npot,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadows,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-sharedcorners,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-strokecircle,-1
-strokedlines,-1
-stroke-fill,-1
-strokerect,-1
-strokerects,-1
-stroke_rect_shader,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-text_scale_skew,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylargebitmap,-1
-verylarge_picture_image,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
-zeroPath,-1
diff --git a/src/amd/ci/amd-raven-skqp_unittests-fails.txt b/src/amd/ci/amd-raven-skqp_unittests-fails.txt
deleted file mode 100644
index 707eaf493eecf7559f9be262662b75d8dfa46527..0000000000000000000000000000000000000000
--- a/src/amd/ci/amd-raven-skqp_unittests-fails.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# Failed since the first run
-unitTest_SRGBReadWritePixels
diff --git a/src/amd/ci/deqp-amd-raven-skqp.toml b/src/amd/ci/deqp-amd-raven-skqp.toml
new file mode 100644
index 0000000000000000000000000000000000000000..c2921a1122b1b1028a65f05e75fe9387f031f7d6
--- /dev/null
+++ b/src/amd/ci/deqp-amd-raven-skqp.toml
@@ -0,0 +1,3 @@
+[[skqp]]
+skqp = "/skqp/skqp"
+skqp_assets = "/skqp/assets"
diff --git a/src/amd/ci/gitlab-ci.yml b/src/amd/ci/gitlab-ci.yml
index 861aee7bcd11a1dccc08c6b0a162aa8f5ae81185..24251f2245cbf81bf11a64e159eed7f0ac11e7b7 100644
--- a/src/amd/ci/gitlab-ci.yml
+++ b/src/amd/ci/gitlab-ci.yml
@@ -96,15 +96,14 @@ radeonsi-stoney-traces:amd64:
     DRIVER_NAME: radeonsi
     GPU_VERSION: amd-raven
     VK_DRIVER: radeon
+    HWCI_START_XORG: 1
 
 amd-raven-skqp:amd64:
   extends:
     - .lava-test:amd64
     - .amd-raven-test:amd64
-    - .skqp-test
   variables:
-    # Possible skqp backends: gl, gles, unitTest and vk
-    SKQP_BACKENDS: gl gles vk unitTest  # space separated values
+    DEQP_SUITE: amd-raven-skqp
 
 .radv-traces:
   extends:
diff --git a/src/freedreno/ci/deqp-freedreno-a630-skqp.toml b/src/freedreno/ci/deqp-freedreno-a630-skqp.toml
new file mode 100644
index 0000000000000000000000000000000000000000..c2921a1122b1b1028a65f05e75fe9387f031f7d6
--- /dev/null
+++ b/src/freedreno/ci/deqp-freedreno-a630-skqp.toml
@@ -0,0 +1,3 @@
+[[skqp]]
+skqp = "/skqp/skqp"
+skqp_assets = "/skqp/assets"
diff --git a/src/freedreno/ci/freedreno-a630-fails.txt b/src/freedreno/ci/freedreno-a630-fails.txt
index d3bcd84dbeb7cfe641ff5659ce8912c7a86cc3b5..605db20d5df78752ac84c4cb8b7659cbb5248549 100644
--- a/src/freedreno/ci/freedreno-a630-fails.txt
+++ b/src/freedreno/ci/freedreno-a630-fails.txt
@@ -476,3 +476,8 @@ wayland-dEQP-EGL.functional.negative_api.create_pixmap_surface,Fail
 # Image comparison failed: reference = 0.000488281, expected = 0:1:0:0, result = 0:1:0:3
 # Image comparison failed: reference = 0.000976562, expected = 1:1:0:0, result = 1:1:0:3
 wayland-dEQP-EGL.functional.wide_color.pbuffer_888_colorspace_default,Fail
+
+# skqp failure:
+# SRGBReadWritePixels FAILED (7 errors)
+# ../../tests/SRGBReadWritePixelsTest.cpp:214	Could not create sRGB surface context. [OpenGL]
+SRGBReadWritePixels,Fail
diff --git a/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-crashes.txt b/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-crashes.txt
deleted file mode 100644
index 14fbfd657b73ea0171b00325845c48537eaed906..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-crashes.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-gl_blur2rectsnonninepatch
-gl_bug339297_as_clip
-gl_bug6083
-gl_dashtextcaps
diff --git a/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-fails.txt b/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-fails.txt
deleted file mode 100644
index 2f52c09c6d5349759fd8c9b321c23ad507bfab03..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-fails.txt
+++ /dev/null
@@ -1,1379 +0,0 @@
-# Acceptable error
-
-# Two pixels with wrong color
-ovals_as_paths,24
-
-# Bad rendering
-
-arcs_as_paths,-1
-etc1,-1
-
-# Model missing
-
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap_subset_shader,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_strokerect,-1
-clipcubic,-1
-clippedcubic2,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-drawTextRSXform,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancy_gradients,-1
-fancyblobunderline,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-imagealphathreshold_image,-1
-imageblur,-1
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-path-reverse,-1
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaled_tilemodes_npot,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-sharedcorners,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylarge_picture_image,-1
-verylargebitmap,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
-windowrectangles_mask,-1
-s_BlurDrawImage,-1
-s_CubicStroke,-1
-s_OverStroke,-1
-s_aaclip,-1
-s_aarectmodes,-1
-s_aaxfermodes,-1
-s_addarc,-1
-s_addarc_meas,-1
-s_analytic_antialias_convex,-1
-s_analytic_antialias_general,-1
-s_analytic_gradients,-1
-s_animated-image-blurs,-1
-s_anisotropic_hq,-1
-s_arccirclegap,-1
-s_arcofzorro,-1
-s_arcto,-1
-s_b_119394958,-1
-s_badpaint,-1
-s_bezier_conic_effects,-1
-s_bezier_quad_effects,-1
-s_beziers,-1
-s_big_rrect_circle_aa_effect,-1
-s_big_rrect_circular_corner_aa_effect,-1
-s_big_rrect_ellipse_aa_effect,-1
-s_big_rrect_elliptical_corner_aa_effect,-1
-s_big_rrect_rect_aa_effect,-1
-s_bigblurs,-1
-s_bigconic,-1
-s_bigmatrix,-1
-s_bigrect,-1
-s_bigtext,-1
-s_bigtileimagefilter,-1
-s_bitmap_subset_shader,-1
-s_bitmapfilters,-1
-s_bitmaprect_i,-1
-s_bitmaprect_s,-1
-s_bitmaptiled_fractional_horizontal,-1
-s_bitmaptiled_fractional_vertical,-1
-s_bleed,-1
-s_bleed_alpha_bmp,-1
-s_bleed_alpha_bmp_shader,-1
-s_bleed_alpha_image,-1
-s_bleed_alpha_image_shader,-1
-s_bleed_image,-1
-s_blur2rects,-1
-s_blur_ignore_xform_circle,-1
-s_blur_ignore_xform_rect,-1
-s_blur_ignore_xform_rrect,-1
-s_blur_image,-1
-s_blurcircles,-1
-s_blurimagevmask,-1
-s_blurquickreject,-1
-s_blurrects,-1
-s_blurredclippedcircle,-1
-s_blurroundrect-WH-100x100-unevenCorners,-1
-s_blurs,-1
-s_bmp_filter_quality_repeat,-1
-s_bug5099,-1
-s_bug5252,-1
-s_bug530095,-1
-s_bug615686,-1
-s_bug6987,-1
-s_c_gms,-1
-s_chrome_gradtext2,-1
-s_circle_sizes,-1
-s_circles,-1
-s_circular-clips,-1
-s_circular_arcs_fill,-1
-s_circular_arcs_hairline,-1
-s_circular_arcs_stroke_and_fill_butt,-1
-s_circular_arcs_stroke_and_fill_round,-1
-s_circular_arcs_stroke_and_fill_square,-1
-s_circular_arcs_stroke_butt,-1
-s_circular_arcs_stroke_round,-1
-s_circular_arcs_stroke_square,-1
-s_circular_arcs_weird,-1
-s_clamped_gradients,-1
-s_clamped_gradients_nodither,-1
-s_clip_strokerect,-1
-s_clipcubic,-1
-s_clippedcubic2,-1
-s_clockwise,-1
-s_colorcomposefilter_wacky,-1
-s_coloremoji,-1
-s_combo-patheffects,-1
-s_complexclip2_path_aa,-1
-s_complexclip2_rect_aa,-1
-s_complexclip2_rrect_aa,-1
-s_complexclip2_rrect_bw,-1
-s_complexclip3_complex,-1
-s_complexclip3_simple,-1
-s_complexclip4_aa,-1
-s_complexclip_aa,-1
-s_complexclip_aa_invert,-1
-s_complexclip_aa_layer,-1
-s_complexclip_aa_layer_invert,-1
-s_complexclip_bw,-1
-s_complexclip_bw_invert,-1
-s_complexclip_bw_layer,-1
-s_complexclip_bw_layer_invert,-1
-s_composeshader_bitmap2,-1
-s_concavepaths,-1
-s_conicpaths,-1
-s_const_color_processor,-1
-s_contour_start,-1
-s_convex-lineonly-paths,-1
-s_convex-lineonly-paths-stroke-and-fill,-1
-s_convex-polygon-inset,-1
-s_convex_poly_clip,-1
-s_convex_poly_effect,-1
-s_convexpaths,-1
-s_crbug_640176,-1
-s_crbug_788500,-1
-s_crbug_847759,-1
-s_crbug_884166,-1
-s_crbug_887103,-1
-s_crbug_888453,-1
-s_crbug_892988,-1
-s_cross_context_image,-1
-s_cubicclosepath,-1
-s_cubicpath,-1
-s_daa,-1
-s_dash_line_zero_off_interval,-1
-s_dashcircle,-1
-s_dashcircle2,-1
-s_dashcubics,-1
-s_dashing,-1
-s_dashing2,-1
-s_dashing3,-1
-s_dashing4,-1
-s_dashing5_aa,-1
-s_dashing5_bw,-1
-s_degeneratesegments,-1
-s_dftext,-1
-s_dftext_blob_persp,-1
-s_displacement,-1
-s_dont_clip_to_layer,-1
-s_downsamplebitmap_checkerboard_high,-1
-s_downsamplebitmap_checkerboard_low,-1
-s_downsamplebitmap_checkerboard_medium,-1
-s_downsamplebitmap_checkerboard_none,-1
-s_downsamplebitmap_image_high,-1
-s_downsamplebitmap_image_low,-1
-s_downsamplebitmap_image_medium,-1
-s_downsamplebitmap_image_none,-1
-s_downsamplebitmap_text_high,-1
-s_downsamplebitmap_text_low,-1
-s_downsamplebitmap_text_medium,-1
-s_downsamplebitmap_text_none,-1
-s_draw-atlas,-1
-s_drawTextRSXform,-1
-s_draw_image_set,-1
-s_draw_image_set_rect_to_rect,-1
-s_draw_quad_set,-1
-s_drawable,-1
-s_drawbitmaprect-imagerect-subset,-1
-s_drawbitmaprect-subset,-1
-s_drawlooper,-1
-s_drawminibitmaprect,-1
-s_drawminibitmaprect_aa,-1
-s_drawregionmodes,-1
-s_dropshadowimagefilter,-1
-s_drrect,-1
-s_drrect_small_inner,-1
-s_dstreadshuffle,-1
-s_emboss,-1
-s_emptypath,-1
-s_extractbitmap,-1
-s_fancy_gradients,-1
-s_fancyblobunderline,-1
-s_fatpathfill,-1
-s_fillcircle,-1
-s_filltypes,-1
-s_filltypespersp,-1
-s_filterbitmap_checkerboard_192_192,-1
-s_filterbitmap_checkerboard_32_2,-1
-s_filterbitmap_checkerboard_32_32,-1
-s_filterbitmap_checkerboard_32_32_g8,-1
-s_filterbitmap_checkerboard_32_8,-1
-s_filterbitmap_checkerboard_4_4,-1
-s_filterbitmap_image_color_wheel.png,-1
-s_filterbitmap_image_mandrill_128.png,-1
-s_filterbitmap_image_mandrill_16.png,-1
-s_filterbitmap_image_mandrill_256.png,-1
-s_filterbitmap_image_mandrill_32.png,-1
-s_filterbitmap_image_mandrill_512.png,-1
-s_filterbitmap_image_mandrill_64.png,-1
-s_filterbitmap_image_mandrill_64.png_g8,-1
-s_filterbitmap_text_10.00pt,-1
-s_filterbitmap_text_3.00pt,-1
-s_filterbitmap_text_7.00pt,-1
-s_filterbug,-1
-s_filterfastbounds,-1
-s_filterindiabox,-1
-s_flippity,-1
-s_fontcache,-1
-s_fontcache-mt,-1
-s_fontmgr_bounds,-1
-s_fontmgr_bounds_0.75_0,-1
-s_fontmgr_bounds_1_-0.25,-1
-s_fontmgr_iter,-1
-s_fontmgr_match,-1
-s_fontregen,-1
-s_fontscaler,-1
-s_fontscalerdistortable,-1
-s_fwidth_squircle,-1
-s_gamma,-1
-s_getpostextpath,-1
-s_giantbitmap_clamp_bilerp_rotate,-1
-s_giantbitmap_clamp_bilerp_scale,-1
-s_giantbitmap_mirror_bilerp_rotate,-1
-s_giantbitmap_mirror_bilerp_scale,-1
-s_giantbitmap_repeat_bilerp_rotate,-1
-s_giantbitmap_repeat_bilerp_scale,-1
-s_glyph_pos_h_b,-1
-s_glyph_pos_h_f,-1
-s_glyph_pos_h_s,-1
-s_glyph_pos_n_b,-1
-s_glyph_pos_n_f,-1
-s_glyph_pos_n_s,-1
-s_gradient_dirty_laundry,-1
-s_gradients,-1
-s_gradients4f,-1
-s_gradients4f_nodither,-1
-s_gradients_2pt_conical_edge,-1
-s_gradients_2pt_conical_edge_mirror,-1
-s_gradients_2pt_conical_edge_nodither,-1
-s_gradients_2pt_conical_edge_repeat,-1
-s_gradients_2pt_conical_inside,-1
-s_gradients_2pt_conical_inside_mirror,-1
-s_gradients_2pt_conical_inside_nodither,-1
-s_gradients_2pt_conical_inside_repeat,-1
-s_gradients_2pt_conical_outside,-1
-s_gradients_2pt_conical_outside_mirror,-1
-s_gradients_2pt_conical_outside_nodither,-1
-s_gradients_2pt_conical_outside_repeat,-1
-s_gradients_degenerate_2pt,-1
-s_gradients_degenerate_2pt_nodither,-1
-s_gradients_dup_color_stops,-1
-s_gradients_local_perspective,-1
-s_gradients_local_perspective_nodither,-1
-s_gradients_no_texture,-1
-s_gradients_no_texture_nodither,-1
-s_gradients_nodither,-1
-s_gradients_view_perspective,-1
-s_gradients_view_perspective_nodither,-1
-s_hairlines,-1
-s_hairmodes,-1
-s_hittestpath,-1
-s_hsl,-1
-s_hugebitmapshader,-1
-s_image-cacherator-from-picture,-1
-s_image-cacherator-from-raster,-1
-s_image-cacherator-from-texture,-1
-s_image-picture,-1
-s_image-shader,-1
-s_image_from_yuv_textures,-1
-s_image_scale_aligned,-1
-s_imagealphathreshold_image,-1
-s_imageblur,-1
-s_imagefilters_xfermodes,-1
-s_imagefiltersbase,-1
-s_imagefiltersclipped,-1
-s_imagefilterscropexpand,-1
-s_imagefilterscropped,-1
-s_imagefiltersscaled,-1
-s_imagefiltersstroked,-1
-s_imagefilterstransformed,-1
-s_imagemagnifier,-1
-s_imagemagnifier_cropped,-1
-s_imagemakewithfilter,-1
-s_imageresizetiled,-1
-s_imagesource,-1
-s_imagesrc2_low,-1
-s_innershapes,-1
-s_innershapes_bw,-1
-s_internal_links,-1
-s_inverse_paths,-1
-s_largecircle,-1
-s_lattice,-1
-s_lcdoverlap,-1
-s_lcdtext,-1
-s_lighting,-1
-s_lightingshader2,-1
-s_lineclosepath,-1
-s_linepath,-1
-s_localmatrixshader_nested,-1
-s_longlinedash,-1
-s_longpathdash,-1
-s_longwavyline,-1
-s_lumafilter,-1
-s_maddash,-1
-s_mandoline,-1
-s_manyarcs,-1
-s_manycircles,-1
-s_manyrrects,-1
-s_matrixconvolution,-1
-s_matrixconvolution_color,-1
-s_matriximagefilter,-1
-s_mipmap,-1
-s_mixedtextblobs,-1
-s_morphology,-1
-s_nested_aa,-1
-s_nested_flipY_aa,-1
-s_nested_flipY_bw,-1
-s_new_texture_image,-1
-s_ninepatch-stretch,-1
-s_nonclosedpaths,-1
-s_ovals,-1
-s_p3_ovals,-1
-s_parsedpaths,-1
-s_patch_image,-1
-s_path-reverse,-1
-s_path_huge_crbug_800804,-1
-s_path_mask_cache,-1
-s_patheffect,-1
-s_pathfill,-1
-s_pathinterior,-1
-s_pathinvfill,-1
-s_pathopsinverse,-1
-s_pathopsskpclip,-1
-s_pdf_never_embed,-1
-s_persp_images,-1
-s_persp_shaders_aa,-1
-s_persp_shaders_bw,-1
-s_pictureimagefilter,-1
-s_pictureshader,-1
-s_pictureshader_localwrapper,-1
-s_pixel_snap_combo,-1
-s_pixel_snap_line,-1
-s_pixel_snap_point,-1
-s_pixel_snap_rect,-1
-s_points,-1
-s_poly2poly,-1
-s_polygons,-1
-s_quadcap,-1
-s_quadclosepath,-1
-s_quadpath,-1
-s_radial_gradient4,-1
-s_radial_gradient4_nodither,-1
-s_rectangle_texture,-1
-s_rects,-1
-s_rects_as_paths,-1
-s_repeated_bitmap_jpg,-1
-s_resizeimagefilter,-1
-s_rotate_imagefilter,-1
-s_rotatedcubicpath,-1
-s_roundrects,-1
-s_rrect,-1
-s_rrect_clip_aa,-1
-s_rrect_clip_draw_paint,-1
-s_rrect_draw_aa,-1
-s_rrect_effect,-1
-s_save_behind,-1
-s_savelayer_clipmask,-1
-s_savelayer_coverage,-1
-s_savelayer_initfromprev,-1
-s_savelayer_maskfilter,-1
-s_savelayer_with_backdrop,-1
-s_scaled_tilemodes_npot,-1
-s_scaledemoji_rendering,-1
-s_scaledstrokes,-1
-s_shadermaskfilter_gradient,-1
-s_shadermaskfilter_image,-1
-s_shadermaskfilter_localmatrix,-1
-s_shadertext3,-1
-s_shadow_utils,-1
-s_shadow_utils_gray,-1
-s_shadow_utils_occl,-1
-s_shadows,-1
-s_sharedcorners,-1
-s_simple-magnification,-1
-s_simple-offsetimagefilter,-1
-s_simple-polygon-offset,-1
-s_simpleaaclip_path,-1
-s_simpleaaclip_rect,-1
-s_simpleblurroundrect,-1
-s_simplerect,-1
-s_simpleshapes,-1
-s_skbug_257,-1
-s_skbug_4868,-1
-s_skbug_8664,-1
-s_skinning,-1
-s_skinning_cached,-1
-s_skinning_cpu,-1
-s_skinning_cpu_cached,-1
-s_smallarc,-1
-s_smallpaths,-1
-s_squarehair,-1
-s_stlouisarch,-1
-s_stringart,-1
-s_stroke-fill,-1
-s_stroke_rect_shader,-1
-s_strokecircle,-1
-s_strokedlines,-1
-s_strokerect,-1
-s_strokerects,-1
-s_strokes3,-1
-s_strokes_poly,-1
-s_strokes_round,-1
-s_stroketext,-1
-s_sweep_tiling,-1
-s_tall_stretched_bitmaps,-1
-s_teenyStrokes,-1
-s_testgradient,-1
-s_text_scale_skew,-1
-s_textblob,-1
-s_textblobgeometrychange,-1
-s_textbloblooper,-1
-s_textblobmixedsizes,-1
-s_textblobmixedsizes_df,-1
-s_textblobrandomfont,-1
-s_textblobshader,-1
-s_textblobtransforms,-1
-s_textblobuseaftergpufree,-1
-s_texture_domain_effect,-1
-s_texture_domain_effect_bilerp,-1
-s_texture_domain_effect_mipmap,-1
-s_thinconcavepaths,-1
-s_thinrects,-1
-s_thinstrokedrects,-1
-s_tiledscaledbitmap,-1
-s_tileimagefilter,-1
-s_tilemode_decal,-1
-s_tilemode_gradient,-1
-s_tilemodes,-1
-s_tilemodes_npot,-1
-s_tinyanglearcs,-1
-s_trickycubicstrokes,-1
-s_trimpatheffect,-1
-s_typefacerendering,-1
-s_typefacerendering_pfa,-1
-s_typefacerendering_pfb,-1
-s_typefacestyles_kerning,-1
-s_varied_text_clipped_lcd,-1
-s_varied_text_clipped_no_lcd,-1
-s_varied_text_ignorable_clip_lcd,-1
-s_varied_text_ignorable_clip_no_lcd,-1
-s_vertices,-1
-s_vertices_batching,-1
-s_vertices_scaled_shader,-1
-s_verylarge_picture_image,-1
-s_verylargebitmap,-1
-s_windowrectangles,-1
-s_windowrectangles_mask,-1
-s_xfermodeimagefilter,-1
-s_xfermodes,-1
-s_yuv_nv12_to_rgb_effect,-1
-s_yuv_to_rgb_effect,-1
-s_zeroPath,-1
-s_zero_control_stroke,-1
-s_zero_length_paths_bw,-1
-s_zero_length_paths_dbl_aa,-1
-s_zero_length_paths_dbl_bw,-1
-s_zerolinestroke,-1
-windowrectangles_mask,-1
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap_subset_shader,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_strokerect,-1
-clipcubic,-1
-clippedcubic2,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-drawTextRSXform,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancy_gradients,-1
-fancyblobunderline,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-imagealphathreshold_image,-1
-imageblur,-1
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-path-reverse,-1
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaled_tilemodes_npot,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-sharedcorners,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylarge_picture_image,-1
-verylargebitmap,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
diff --git a/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-flakes.txt b/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-flakes.txt
deleted file mode 100644
index 6362cb0c703696ec7fde2130e9567d0252a70dab..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-flakes.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-# The following test group pass on the first 3 runs, but may flake eventually.
-# This is an assumption, since those ones were set as failed by Android CTS
-blur2rectsnonninepatch
-bug339297_as_clip
-bug6083
-cliperror
-dashtextcaps
-largeglyphblur
diff --git a/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-fails.txt b/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-fails.txt
deleted file mode 100644
index baef6016744311f8b30ea7a25da775237c2bbf35..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-fails.txt
+++ /dev/null
@@ -1,1377 +0,0 @@
-# Bad rendering
-
-arcs_as_paths,-1
-etc1,-1
-radial_gradient_precision,-1
-
-# Model missing
-
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap_subset_shader,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_strokerect,-1
-clipcubic,-1
-clippedcubic2,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-drawTextRSXform,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancy_gradients,-1
-fancyblobunderline,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-imagealphathreshold_image,-1
-imageblur,-1
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-path-reverse,-1
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaled_tilemodes_npot,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-sharedcorners,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylarge_picture_image,-1
-verylargebitmap,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
-windowrectangles_mask,-1
-s_BlurDrawImage,-1
-s_CubicStroke,-1
-s_OverStroke,-1
-s_aaclip,-1
-s_aarectmodes,-1
-s_aaxfermodes,-1
-s_addarc,-1
-s_addarc_meas,-1
-s_analytic_antialias_convex,-1
-s_analytic_antialias_general,-1
-s_analytic_gradients,-1
-s_animated-image-blurs,-1
-s_anisotropic_hq,-1
-s_arccirclegap,-1
-s_arcofzorro,-1
-s_arcto,-1
-s_b_119394958,-1
-s_badpaint,-1
-s_bezier_conic_effects,-1
-s_bezier_quad_effects,-1
-s_beziers,-1
-s_big_rrect_circle_aa_effect,-1
-s_big_rrect_circular_corner_aa_effect,-1
-s_big_rrect_ellipse_aa_effect,-1
-s_big_rrect_elliptical_corner_aa_effect,-1
-s_big_rrect_rect_aa_effect,-1
-s_bigblurs,-1
-s_bigconic,-1
-s_bigmatrix,-1
-s_bigrect,-1
-s_bigtext,-1
-s_bigtileimagefilter,-1
-s_bitmap_subset_shader,-1
-s_bitmapfilters,-1
-s_bitmaprect_i,-1
-s_bitmaprect_s,-1
-s_bitmaptiled_fractional_horizontal,-1
-s_bitmaptiled_fractional_vertical,-1
-s_bleed,-1
-s_bleed_alpha_bmp,-1
-s_bleed_alpha_bmp_shader,-1
-s_bleed_alpha_image,-1
-s_bleed_alpha_image_shader,-1
-s_bleed_image,-1
-s_blur2rects,-1
-s_blur_ignore_xform_circle,-1
-s_blur_ignore_xform_rect,-1
-s_blur_ignore_xform_rrect,-1
-s_blur_image,-1
-s_blurcircles,-1
-s_blurimagevmask,-1
-s_blurquickreject,-1
-s_blurrects,-1
-s_blurredclippedcircle,-1
-s_blurroundrect-WH-100x100-unevenCorners,-1
-s_blurs,-1
-s_bmp_filter_quality_repeat,-1
-s_bug5099,-1
-s_bug5252,-1
-s_bug530095,-1
-s_bug615686,-1
-s_bug6987,-1
-s_c_gms,-1
-s_chrome_gradtext2,-1
-s_circle_sizes,-1
-s_circles,-1
-s_circular-clips,-1
-s_circular_arcs_fill,-1
-s_circular_arcs_hairline,-1
-s_circular_arcs_stroke_and_fill_butt,-1
-s_circular_arcs_stroke_and_fill_round,-1
-s_circular_arcs_stroke_and_fill_square,-1
-s_circular_arcs_stroke_butt,-1
-s_circular_arcs_stroke_round,-1
-s_circular_arcs_stroke_square,-1
-s_circular_arcs_weird,-1
-s_clamped_gradients,-1
-s_clamped_gradients_nodither,-1
-s_clip_strokerect,-1
-s_clipcubic,-1
-s_clippedcubic2,-1
-s_clockwise,-1
-s_colorcomposefilter_wacky,-1
-s_coloremoji,-1
-s_combo-patheffects,-1
-s_complexclip2_path_aa,-1
-s_complexclip2_rect_aa,-1
-s_complexclip2_rrect_aa,-1
-s_complexclip2_rrect_bw,-1
-s_complexclip3_complex,-1
-s_complexclip3_simple,-1
-s_complexclip4_aa,-1
-s_complexclip_aa,-1
-s_complexclip_aa_invert,-1
-s_complexclip_aa_layer,-1
-s_complexclip_aa_layer_invert,-1
-s_complexclip_bw,-1
-s_complexclip_bw_invert,-1
-s_complexclip_bw_layer,-1
-s_complexclip_bw_layer_invert,-1
-s_composeshader_bitmap2,-1
-s_concavepaths,-1
-s_conicpaths,-1
-s_const_color_processor,-1
-s_contour_start,-1
-s_convex-lineonly-paths,-1
-s_convex-lineonly-paths-stroke-and-fill,-1
-s_convex-polygon-inset,-1
-s_convex_poly_clip,-1
-s_convex_poly_effect,-1
-s_convexpaths,-1
-s_crbug_640176,-1
-s_crbug_788500,-1
-s_crbug_847759,-1
-s_crbug_884166,-1
-s_crbug_887103,-1
-s_crbug_888453,-1
-s_crbug_892988,-1
-s_cross_context_image,-1
-s_cubicclosepath,-1
-s_cubicpath,-1
-s_daa,-1
-s_dash_line_zero_off_interval,-1
-s_dashcircle,-1
-s_dashcircle2,-1
-s_dashcubics,-1
-s_dashing,-1
-s_dashing2,-1
-s_dashing3,-1
-s_dashing4,-1
-s_dashing5_aa,-1
-s_dashing5_bw,-1
-s_degeneratesegments,-1
-s_dftext,-1
-s_dftext_blob_persp,-1
-s_displacement,-1
-s_dont_clip_to_layer,-1
-s_downsamplebitmap_checkerboard_high,-1
-s_downsamplebitmap_checkerboard_low,-1
-s_downsamplebitmap_checkerboard_medium,-1
-s_downsamplebitmap_checkerboard_none,-1
-s_downsamplebitmap_image_high,-1
-s_downsamplebitmap_image_low,-1
-s_downsamplebitmap_image_medium,-1
-s_downsamplebitmap_image_none,-1
-s_downsamplebitmap_text_high,-1
-s_downsamplebitmap_text_low,-1
-s_downsamplebitmap_text_medium,-1
-s_downsamplebitmap_text_none,-1
-s_draw-atlas,-1
-s_drawTextRSXform,-1
-s_draw_image_set,-1
-s_draw_image_set_rect_to_rect,-1
-s_draw_quad_set,-1
-s_drawable,-1
-s_drawbitmaprect-imagerect-subset,-1
-s_drawbitmaprect-subset,-1
-s_drawlooper,-1
-s_drawminibitmaprect,-1
-s_drawminibitmaprect_aa,-1
-s_drawregionmodes,-1
-s_dropshadowimagefilter,-1
-s_drrect,-1
-s_drrect_small_inner,-1
-s_dstreadshuffle,-1
-s_emboss,-1
-s_emptypath,-1
-s_extractbitmap,-1
-s_fancy_gradients,-1
-s_fancyblobunderline,-1
-s_fatpathfill,-1
-s_fillcircle,-1
-s_filltypes,-1
-s_filltypespersp,-1
-s_filterbitmap_checkerboard_192_192,-1
-s_filterbitmap_checkerboard_32_2,-1
-s_filterbitmap_checkerboard_32_32,-1
-s_filterbitmap_checkerboard_32_32_g8,-1
-s_filterbitmap_checkerboard_32_8,-1
-s_filterbitmap_checkerboard_4_4,-1
-s_filterbitmap_image_color_wheel.png,-1
-s_filterbitmap_image_mandrill_128.png,-1
-s_filterbitmap_image_mandrill_16.png,-1
-s_filterbitmap_image_mandrill_256.png,-1
-s_filterbitmap_image_mandrill_32.png,-1
-s_filterbitmap_image_mandrill_512.png,-1
-s_filterbitmap_image_mandrill_64.png,-1
-s_filterbitmap_image_mandrill_64.png_g8,-1
-s_filterbitmap_text_10.00pt,-1
-s_filterbitmap_text_3.00pt,-1
-s_filterbitmap_text_7.00pt,-1
-s_filterbug,-1
-s_filterfastbounds,-1
-s_filterindiabox,-1
-s_flippity,-1
-s_fontcache,-1
-s_fontcache-mt,-1
-s_fontmgr_bounds,-1
-s_fontmgr_bounds_0.75_0,-1
-s_fontmgr_bounds_1_-0.25,-1
-s_fontmgr_iter,-1
-s_fontmgr_match,-1
-s_fontregen,-1
-s_fontscaler,-1
-s_fontscalerdistortable,-1
-s_fwidth_squircle,-1
-s_gamma,-1
-s_getpostextpath,-1
-s_giantbitmap_clamp_bilerp_rotate,-1
-s_giantbitmap_clamp_bilerp_scale,-1
-s_giantbitmap_mirror_bilerp_rotate,-1
-s_giantbitmap_mirror_bilerp_scale,-1
-s_giantbitmap_repeat_bilerp_rotate,-1
-s_giantbitmap_repeat_bilerp_scale,-1
-s_glyph_pos_h_b,-1
-s_glyph_pos_h_f,-1
-s_glyph_pos_h_s,-1
-s_glyph_pos_n_b,-1
-s_glyph_pos_n_f,-1
-s_glyph_pos_n_s,-1
-s_gradient_dirty_laundry,-1
-s_gradients,-1
-s_gradients4f,-1
-s_gradients4f_nodither,-1
-s_gradients_2pt_conical_edge,-1
-s_gradients_2pt_conical_edge_mirror,-1
-s_gradients_2pt_conical_edge_nodither,-1
-s_gradients_2pt_conical_edge_repeat,-1
-s_gradients_2pt_conical_inside,-1
-s_gradients_2pt_conical_inside_mirror,-1
-s_gradients_2pt_conical_inside_nodither,-1
-s_gradients_2pt_conical_inside_repeat,-1
-s_gradients_2pt_conical_outside,-1
-s_gradients_2pt_conical_outside_mirror,-1
-s_gradients_2pt_conical_outside_nodither,-1
-s_gradients_2pt_conical_outside_repeat,-1
-s_gradients_degenerate_2pt,-1
-s_gradients_degenerate_2pt_nodither,-1
-s_gradients_dup_color_stops,-1
-s_gradients_local_perspective,-1
-s_gradients_local_perspective_nodither,-1
-s_gradients_no_texture,-1
-s_gradients_no_texture_nodither,-1
-s_gradients_nodither,-1
-s_gradients_view_perspective,-1
-s_gradients_view_perspective_nodither,-1
-s_hairlines,-1
-s_hairmodes,-1
-s_hittestpath,-1
-s_hsl,-1
-s_hugebitmapshader,-1
-s_image-cacherator-from-picture,-1
-s_image-cacherator-from-raster,-1
-s_image-cacherator-from-texture,-1
-s_image-picture,-1
-s_image-shader,-1
-s_image_from_yuv_textures,-1
-s_image_scale_aligned,-1
-s_imagealphathreshold_image,-1
-s_imageblur,-1
-s_imagefilters_xfermodes,-1
-s_imagefiltersbase,-1
-s_imagefiltersclipped,-1
-s_imagefilterscropexpand,-1
-s_imagefilterscropped,-1
-s_imagefiltersscaled,-1
-s_imagefiltersstroked,-1
-s_imagefilterstransformed,-1
-s_imagemagnifier,-1
-s_imagemagnifier_cropped,-1
-s_imagemakewithfilter,-1
-s_imageresizetiled,-1
-s_imagesource,-1
-s_imagesrc2_low,-1
-s_innershapes,-1
-s_innershapes_bw,-1
-s_internal_links,-1
-s_inverse_paths,-1
-s_largecircle,-1
-s_lattice,-1
-s_lcdoverlap,-1
-s_lcdtext,-1
-s_lighting,-1
-s_lightingshader2,-1
-s_lineclosepath,-1
-s_linepath,-1
-s_localmatrixshader_nested,-1
-s_longlinedash,-1
-s_longpathdash,-1
-s_longwavyline,-1
-s_lumafilter,-1
-s_maddash,-1
-s_mandoline,-1
-s_manyarcs,-1
-s_manycircles,-1
-s_manyrrects,-1
-s_matrixconvolution,-1
-s_matrixconvolution_color,-1
-s_matriximagefilter,-1
-s_mipmap,-1
-s_mixedtextblobs,-1
-s_morphology,-1
-s_nested_aa,-1
-s_nested_flipY_aa,-1
-s_nested_flipY_bw,-1
-s_new_texture_image,-1
-s_ninepatch-stretch,-1
-s_nonclosedpaths,-1
-s_ovals,-1
-s_p3_ovals,-1
-s_parsedpaths,-1
-s_patch_image,-1
-s_path-reverse,-1
-s_path_huge_crbug_800804,-1
-s_path_mask_cache,-1
-s_patheffect,-1
-s_pathfill,-1
-s_pathinterior,-1
-s_pathinvfill,-1
-s_pathopsinverse,-1
-s_pathopsskpclip,-1
-s_pdf_never_embed,-1
-s_persp_images,-1
-s_persp_shaders_aa,-1
-s_persp_shaders_bw,-1
-s_pictureimagefilter,-1
-s_pictureshader,-1
-s_pictureshader_localwrapper,-1
-s_pixel_snap_combo,-1
-s_pixel_snap_line,-1
-s_pixel_snap_point,-1
-s_pixel_snap_rect,-1
-s_points,-1
-s_poly2poly,-1
-s_polygons,-1
-s_quadcap,-1
-s_quadclosepath,-1
-s_quadpath,-1
-s_radial_gradient4,-1
-s_radial_gradient4_nodither,-1
-s_rectangle_texture,-1
-s_rects,-1
-s_rects_as_paths,-1
-s_repeated_bitmap_jpg,-1
-s_resizeimagefilter,-1
-s_rotate_imagefilter,-1
-s_rotatedcubicpath,-1
-s_roundrects,-1
-s_rrect,-1
-s_rrect_clip_aa,-1
-s_rrect_clip_draw_paint,-1
-s_rrect_draw_aa,-1
-s_rrect_effect,-1
-s_save_behind,-1
-s_savelayer_clipmask,-1
-s_savelayer_coverage,-1
-s_savelayer_initfromprev,-1
-s_savelayer_maskfilter,-1
-s_savelayer_with_backdrop,-1
-s_scaled_tilemodes_npot,-1
-s_scaledemoji_rendering,-1
-s_scaledstrokes,-1
-s_shadermaskfilter_gradient,-1
-s_shadermaskfilter_image,-1
-s_shadermaskfilter_localmatrix,-1
-s_shadertext3,-1
-s_shadow_utils,-1
-s_shadow_utils_gray,-1
-s_shadow_utils_occl,-1
-s_shadows,-1
-s_sharedcorners,-1
-s_simple-magnification,-1
-s_simple-offsetimagefilter,-1
-s_simple-polygon-offset,-1
-s_simpleaaclip_path,-1
-s_simpleaaclip_rect,-1
-s_simpleblurroundrect,-1
-s_simplerect,-1
-s_simpleshapes,-1
-s_skbug_257,-1
-s_skbug_4868,-1
-s_skbug_8664,-1
-s_skinning,-1
-s_skinning_cached,-1
-s_skinning_cpu,-1
-s_skinning_cpu_cached,-1
-s_smallarc,-1
-s_smallpaths,-1
-s_squarehair,-1
-s_stlouisarch,-1
-s_stringart,-1
-s_stroke-fill,-1
-s_stroke_rect_shader,-1
-s_strokecircle,-1
-s_strokedlines,-1
-s_strokerect,-1
-s_strokerects,-1
-s_strokes3,-1
-s_strokes_poly,-1
-s_strokes_round,-1
-s_stroketext,-1
-s_sweep_tiling,-1
-s_tall_stretched_bitmaps,-1
-s_teenyStrokes,-1
-s_testgradient,-1
-s_text_scale_skew,-1
-s_textblob,-1
-s_textblobgeometrychange,-1
-s_textbloblooper,-1
-s_textblobmixedsizes,-1
-s_textblobmixedsizes_df,-1
-s_textblobrandomfont,-1
-s_textblobshader,-1
-s_textblobtransforms,-1
-s_textblobuseaftergpufree,-1
-s_texture_domain_effect,-1
-s_texture_domain_effect_bilerp,-1
-s_texture_domain_effect_mipmap,-1
-s_thinconcavepaths,-1
-s_thinrects,-1
-s_thinstrokedrects,-1
-s_tiledscaledbitmap,-1
-s_tileimagefilter,-1
-s_tilemode_decal,-1
-s_tilemode_gradient,-1
-s_tilemodes,-1
-s_tilemodes_npot,-1
-s_tinyanglearcs,-1
-s_trickycubicstrokes,-1
-s_trimpatheffect,-1
-s_typefacerendering,-1
-s_typefacerendering_pfa,-1
-s_typefacerendering_pfb,-1
-s_typefacestyles_kerning,-1
-s_varied_text_clipped_lcd,-1
-s_varied_text_clipped_no_lcd,-1
-s_varied_text_ignorable_clip_lcd,-1
-s_varied_text_ignorable_clip_no_lcd,-1
-s_vertices,-1
-s_vertices_batching,-1
-s_vertices_scaled_shader,-1
-s_verylarge_picture_image,-1
-s_verylargebitmap,-1
-s_windowrectangles,-1
-s_windowrectangles_mask,-1
-s_xfermodeimagefilter,-1
-s_xfermodes,-1
-s_yuv_nv12_to_rgb_effect,-1
-s_yuv_to_rgb_effect,-1
-s_zeroPath,-1
-s_zero_control_stroke,-1
-s_zero_length_paths_bw,-1
-s_zero_length_paths_dbl_aa,-1
-s_zero_length_paths_dbl_bw,-1
-s_zerolinestroke,-1
-windowrectangles_mask,-1
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap_subset_shader,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_strokerect,-1
-clipcubic,-1
-clippedcubic2,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-drawTextRSXform,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancy_gradients,-1
-fancyblobunderline,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-imagealphathreshold_image,-1
-imageblur,-1
-# A few pixels at the edge of the blur, nothing more noticeable at those points than the jaggedness elsewhere.
-imageblurclampmode,180
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-path-reverse,-1
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaled_tilemodes_npot,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-sharedcorners,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylarge_picture_image,-1
-verylargebitmap,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
diff --git a/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-flakes.txt b/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-flakes.txt
deleted file mode 100644
index 6362cb0c703696ec7fde2130e9567d0252a70dab..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-flakes.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-# The following test group pass on the first 3 runs, but may flake eventually.
-# This is an assumption, since those ones were set as failed by Android CTS
-blur2rectsnonninepatch
-bug339297_as_clip
-bug6083
-cliperror
-dashtextcaps
-largeglyphblur
diff --git a/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-fails.txt b/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-fails.txt
deleted file mode 100644
index 2f52c09c6d5349759fd8c9b321c23ad507bfab03..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-fails.txt
+++ /dev/null
@@ -1,1379 +0,0 @@
-# Acceptable error
-
-# Two pixels with wrong color
-ovals_as_paths,24
-
-# Bad rendering
-
-arcs_as_paths,-1
-etc1,-1
-
-# Model missing
-
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap_subset_shader,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_strokerect,-1
-clipcubic,-1
-clippedcubic2,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-drawTextRSXform,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancy_gradients,-1
-fancyblobunderline,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-imagealphathreshold_image,-1
-imageblur,-1
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-path-reverse,-1
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaled_tilemodes_npot,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-sharedcorners,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylarge_picture_image,-1
-verylargebitmap,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
-windowrectangles_mask,-1
-s_BlurDrawImage,-1
-s_CubicStroke,-1
-s_OverStroke,-1
-s_aaclip,-1
-s_aarectmodes,-1
-s_aaxfermodes,-1
-s_addarc,-1
-s_addarc_meas,-1
-s_analytic_antialias_convex,-1
-s_analytic_antialias_general,-1
-s_analytic_gradients,-1
-s_animated-image-blurs,-1
-s_anisotropic_hq,-1
-s_arccirclegap,-1
-s_arcofzorro,-1
-s_arcto,-1
-s_b_119394958,-1
-s_badpaint,-1
-s_bezier_conic_effects,-1
-s_bezier_quad_effects,-1
-s_beziers,-1
-s_big_rrect_circle_aa_effect,-1
-s_big_rrect_circular_corner_aa_effect,-1
-s_big_rrect_ellipse_aa_effect,-1
-s_big_rrect_elliptical_corner_aa_effect,-1
-s_big_rrect_rect_aa_effect,-1
-s_bigblurs,-1
-s_bigconic,-1
-s_bigmatrix,-1
-s_bigrect,-1
-s_bigtext,-1
-s_bigtileimagefilter,-1
-s_bitmap_subset_shader,-1
-s_bitmapfilters,-1
-s_bitmaprect_i,-1
-s_bitmaprect_s,-1
-s_bitmaptiled_fractional_horizontal,-1
-s_bitmaptiled_fractional_vertical,-1
-s_bleed,-1
-s_bleed_alpha_bmp,-1
-s_bleed_alpha_bmp_shader,-1
-s_bleed_alpha_image,-1
-s_bleed_alpha_image_shader,-1
-s_bleed_image,-1
-s_blur2rects,-1
-s_blur_ignore_xform_circle,-1
-s_blur_ignore_xform_rect,-1
-s_blur_ignore_xform_rrect,-1
-s_blur_image,-1
-s_blurcircles,-1
-s_blurimagevmask,-1
-s_blurquickreject,-1
-s_blurrects,-1
-s_blurredclippedcircle,-1
-s_blurroundrect-WH-100x100-unevenCorners,-1
-s_blurs,-1
-s_bmp_filter_quality_repeat,-1
-s_bug5099,-1
-s_bug5252,-1
-s_bug530095,-1
-s_bug615686,-1
-s_bug6987,-1
-s_c_gms,-1
-s_chrome_gradtext2,-1
-s_circle_sizes,-1
-s_circles,-1
-s_circular-clips,-1
-s_circular_arcs_fill,-1
-s_circular_arcs_hairline,-1
-s_circular_arcs_stroke_and_fill_butt,-1
-s_circular_arcs_stroke_and_fill_round,-1
-s_circular_arcs_stroke_and_fill_square,-1
-s_circular_arcs_stroke_butt,-1
-s_circular_arcs_stroke_round,-1
-s_circular_arcs_stroke_square,-1
-s_circular_arcs_weird,-1
-s_clamped_gradients,-1
-s_clamped_gradients_nodither,-1
-s_clip_strokerect,-1
-s_clipcubic,-1
-s_clippedcubic2,-1
-s_clockwise,-1
-s_colorcomposefilter_wacky,-1
-s_coloremoji,-1
-s_combo-patheffects,-1
-s_complexclip2_path_aa,-1
-s_complexclip2_rect_aa,-1
-s_complexclip2_rrect_aa,-1
-s_complexclip2_rrect_bw,-1
-s_complexclip3_complex,-1
-s_complexclip3_simple,-1
-s_complexclip4_aa,-1
-s_complexclip_aa,-1
-s_complexclip_aa_invert,-1
-s_complexclip_aa_layer,-1
-s_complexclip_aa_layer_invert,-1
-s_complexclip_bw,-1
-s_complexclip_bw_invert,-1
-s_complexclip_bw_layer,-1
-s_complexclip_bw_layer_invert,-1
-s_composeshader_bitmap2,-1
-s_concavepaths,-1
-s_conicpaths,-1
-s_const_color_processor,-1
-s_contour_start,-1
-s_convex-lineonly-paths,-1
-s_convex-lineonly-paths-stroke-and-fill,-1
-s_convex-polygon-inset,-1
-s_convex_poly_clip,-1
-s_convex_poly_effect,-1
-s_convexpaths,-1
-s_crbug_640176,-1
-s_crbug_788500,-1
-s_crbug_847759,-1
-s_crbug_884166,-1
-s_crbug_887103,-1
-s_crbug_888453,-1
-s_crbug_892988,-1
-s_cross_context_image,-1
-s_cubicclosepath,-1
-s_cubicpath,-1
-s_daa,-1
-s_dash_line_zero_off_interval,-1
-s_dashcircle,-1
-s_dashcircle2,-1
-s_dashcubics,-1
-s_dashing,-1
-s_dashing2,-1
-s_dashing3,-1
-s_dashing4,-1
-s_dashing5_aa,-1
-s_dashing5_bw,-1
-s_degeneratesegments,-1
-s_dftext,-1
-s_dftext_blob_persp,-1
-s_displacement,-1
-s_dont_clip_to_layer,-1
-s_downsamplebitmap_checkerboard_high,-1
-s_downsamplebitmap_checkerboard_low,-1
-s_downsamplebitmap_checkerboard_medium,-1
-s_downsamplebitmap_checkerboard_none,-1
-s_downsamplebitmap_image_high,-1
-s_downsamplebitmap_image_low,-1
-s_downsamplebitmap_image_medium,-1
-s_downsamplebitmap_image_none,-1
-s_downsamplebitmap_text_high,-1
-s_downsamplebitmap_text_low,-1
-s_downsamplebitmap_text_medium,-1
-s_downsamplebitmap_text_none,-1
-s_draw-atlas,-1
-s_drawTextRSXform,-1
-s_draw_image_set,-1
-s_draw_image_set_rect_to_rect,-1
-s_draw_quad_set,-1
-s_drawable,-1
-s_drawbitmaprect-imagerect-subset,-1
-s_drawbitmaprect-subset,-1
-s_drawlooper,-1
-s_drawminibitmaprect,-1
-s_drawminibitmaprect_aa,-1
-s_drawregionmodes,-1
-s_dropshadowimagefilter,-1
-s_drrect,-1
-s_drrect_small_inner,-1
-s_dstreadshuffle,-1
-s_emboss,-1
-s_emptypath,-1
-s_extractbitmap,-1
-s_fancy_gradients,-1
-s_fancyblobunderline,-1
-s_fatpathfill,-1
-s_fillcircle,-1
-s_filltypes,-1
-s_filltypespersp,-1
-s_filterbitmap_checkerboard_192_192,-1
-s_filterbitmap_checkerboard_32_2,-1
-s_filterbitmap_checkerboard_32_32,-1
-s_filterbitmap_checkerboard_32_32_g8,-1
-s_filterbitmap_checkerboard_32_8,-1
-s_filterbitmap_checkerboard_4_4,-1
-s_filterbitmap_image_color_wheel.png,-1
-s_filterbitmap_image_mandrill_128.png,-1
-s_filterbitmap_image_mandrill_16.png,-1
-s_filterbitmap_image_mandrill_256.png,-1
-s_filterbitmap_image_mandrill_32.png,-1
-s_filterbitmap_image_mandrill_512.png,-1
-s_filterbitmap_image_mandrill_64.png,-1
-s_filterbitmap_image_mandrill_64.png_g8,-1
-s_filterbitmap_text_10.00pt,-1
-s_filterbitmap_text_3.00pt,-1
-s_filterbitmap_text_7.00pt,-1
-s_filterbug,-1
-s_filterfastbounds,-1
-s_filterindiabox,-1
-s_flippity,-1
-s_fontcache,-1
-s_fontcache-mt,-1
-s_fontmgr_bounds,-1
-s_fontmgr_bounds_0.75_0,-1
-s_fontmgr_bounds_1_-0.25,-1
-s_fontmgr_iter,-1
-s_fontmgr_match,-1
-s_fontregen,-1
-s_fontscaler,-1
-s_fontscalerdistortable,-1
-s_fwidth_squircle,-1
-s_gamma,-1
-s_getpostextpath,-1
-s_giantbitmap_clamp_bilerp_rotate,-1
-s_giantbitmap_clamp_bilerp_scale,-1
-s_giantbitmap_mirror_bilerp_rotate,-1
-s_giantbitmap_mirror_bilerp_scale,-1
-s_giantbitmap_repeat_bilerp_rotate,-1
-s_giantbitmap_repeat_bilerp_scale,-1
-s_glyph_pos_h_b,-1
-s_glyph_pos_h_f,-1
-s_glyph_pos_h_s,-1
-s_glyph_pos_n_b,-1
-s_glyph_pos_n_f,-1
-s_glyph_pos_n_s,-1
-s_gradient_dirty_laundry,-1
-s_gradients,-1
-s_gradients4f,-1
-s_gradients4f_nodither,-1
-s_gradients_2pt_conical_edge,-1
-s_gradients_2pt_conical_edge_mirror,-1
-s_gradients_2pt_conical_edge_nodither,-1
-s_gradients_2pt_conical_edge_repeat,-1
-s_gradients_2pt_conical_inside,-1
-s_gradients_2pt_conical_inside_mirror,-1
-s_gradients_2pt_conical_inside_nodither,-1
-s_gradients_2pt_conical_inside_repeat,-1
-s_gradients_2pt_conical_outside,-1
-s_gradients_2pt_conical_outside_mirror,-1
-s_gradients_2pt_conical_outside_nodither,-1
-s_gradients_2pt_conical_outside_repeat,-1
-s_gradients_degenerate_2pt,-1
-s_gradients_degenerate_2pt_nodither,-1
-s_gradients_dup_color_stops,-1
-s_gradients_local_perspective,-1
-s_gradients_local_perspective_nodither,-1
-s_gradients_no_texture,-1
-s_gradients_no_texture_nodither,-1
-s_gradients_nodither,-1
-s_gradients_view_perspective,-1
-s_gradients_view_perspective_nodither,-1
-s_hairlines,-1
-s_hairmodes,-1
-s_hittestpath,-1
-s_hsl,-1
-s_hugebitmapshader,-1
-s_image-cacherator-from-picture,-1
-s_image-cacherator-from-raster,-1
-s_image-cacherator-from-texture,-1
-s_image-picture,-1
-s_image-shader,-1
-s_image_from_yuv_textures,-1
-s_image_scale_aligned,-1
-s_imagealphathreshold_image,-1
-s_imageblur,-1
-s_imagefilters_xfermodes,-1
-s_imagefiltersbase,-1
-s_imagefiltersclipped,-1
-s_imagefilterscropexpand,-1
-s_imagefilterscropped,-1
-s_imagefiltersscaled,-1
-s_imagefiltersstroked,-1
-s_imagefilterstransformed,-1
-s_imagemagnifier,-1
-s_imagemagnifier_cropped,-1
-s_imagemakewithfilter,-1
-s_imageresizetiled,-1
-s_imagesource,-1
-s_imagesrc2_low,-1
-s_innershapes,-1
-s_innershapes_bw,-1
-s_internal_links,-1
-s_inverse_paths,-1
-s_largecircle,-1
-s_lattice,-1
-s_lcdoverlap,-1
-s_lcdtext,-1
-s_lighting,-1
-s_lightingshader2,-1
-s_lineclosepath,-1
-s_linepath,-1
-s_localmatrixshader_nested,-1
-s_longlinedash,-1
-s_longpathdash,-1
-s_longwavyline,-1
-s_lumafilter,-1
-s_maddash,-1
-s_mandoline,-1
-s_manyarcs,-1
-s_manycircles,-1
-s_manyrrects,-1
-s_matrixconvolution,-1
-s_matrixconvolution_color,-1
-s_matriximagefilter,-1
-s_mipmap,-1
-s_mixedtextblobs,-1
-s_morphology,-1
-s_nested_aa,-1
-s_nested_flipY_aa,-1
-s_nested_flipY_bw,-1
-s_new_texture_image,-1
-s_ninepatch-stretch,-1
-s_nonclosedpaths,-1
-s_ovals,-1
-s_p3_ovals,-1
-s_parsedpaths,-1
-s_patch_image,-1
-s_path-reverse,-1
-s_path_huge_crbug_800804,-1
-s_path_mask_cache,-1
-s_patheffect,-1
-s_pathfill,-1
-s_pathinterior,-1
-s_pathinvfill,-1
-s_pathopsinverse,-1
-s_pathopsskpclip,-1
-s_pdf_never_embed,-1
-s_persp_images,-1
-s_persp_shaders_aa,-1
-s_persp_shaders_bw,-1
-s_pictureimagefilter,-1
-s_pictureshader,-1
-s_pictureshader_localwrapper,-1
-s_pixel_snap_combo,-1
-s_pixel_snap_line,-1
-s_pixel_snap_point,-1
-s_pixel_snap_rect,-1
-s_points,-1
-s_poly2poly,-1
-s_polygons,-1
-s_quadcap,-1
-s_quadclosepath,-1
-s_quadpath,-1
-s_radial_gradient4,-1
-s_radial_gradient4_nodither,-1
-s_rectangle_texture,-1
-s_rects,-1
-s_rects_as_paths,-1
-s_repeated_bitmap_jpg,-1
-s_resizeimagefilter,-1
-s_rotate_imagefilter,-1
-s_rotatedcubicpath,-1
-s_roundrects,-1
-s_rrect,-1
-s_rrect_clip_aa,-1
-s_rrect_clip_draw_paint,-1
-s_rrect_draw_aa,-1
-s_rrect_effect,-1
-s_save_behind,-1
-s_savelayer_clipmask,-1
-s_savelayer_coverage,-1
-s_savelayer_initfromprev,-1
-s_savelayer_maskfilter,-1
-s_savelayer_with_backdrop,-1
-s_scaled_tilemodes_npot,-1
-s_scaledemoji_rendering,-1
-s_scaledstrokes,-1
-s_shadermaskfilter_gradient,-1
-s_shadermaskfilter_image,-1
-s_shadermaskfilter_localmatrix,-1
-s_shadertext3,-1
-s_shadow_utils,-1
-s_shadow_utils_gray,-1
-s_shadow_utils_occl,-1
-s_shadows,-1
-s_sharedcorners,-1
-s_simple-magnification,-1
-s_simple-offsetimagefilter,-1
-s_simple-polygon-offset,-1
-s_simpleaaclip_path,-1
-s_simpleaaclip_rect,-1
-s_simpleblurroundrect,-1
-s_simplerect,-1
-s_simpleshapes,-1
-s_skbug_257,-1
-s_skbug_4868,-1
-s_skbug_8664,-1
-s_skinning,-1
-s_skinning_cached,-1
-s_skinning_cpu,-1
-s_skinning_cpu_cached,-1
-s_smallarc,-1
-s_smallpaths,-1
-s_squarehair,-1
-s_stlouisarch,-1
-s_stringart,-1
-s_stroke-fill,-1
-s_stroke_rect_shader,-1
-s_strokecircle,-1
-s_strokedlines,-1
-s_strokerect,-1
-s_strokerects,-1
-s_strokes3,-1
-s_strokes_poly,-1
-s_strokes_round,-1
-s_stroketext,-1
-s_sweep_tiling,-1
-s_tall_stretched_bitmaps,-1
-s_teenyStrokes,-1
-s_testgradient,-1
-s_text_scale_skew,-1
-s_textblob,-1
-s_textblobgeometrychange,-1
-s_textbloblooper,-1
-s_textblobmixedsizes,-1
-s_textblobmixedsizes_df,-1
-s_textblobrandomfont,-1
-s_textblobshader,-1
-s_textblobtransforms,-1
-s_textblobuseaftergpufree,-1
-s_texture_domain_effect,-1
-s_texture_domain_effect_bilerp,-1
-s_texture_domain_effect_mipmap,-1
-s_thinconcavepaths,-1
-s_thinrects,-1
-s_thinstrokedrects,-1
-s_tiledscaledbitmap,-1
-s_tileimagefilter,-1
-s_tilemode_decal,-1
-s_tilemode_gradient,-1
-s_tilemodes,-1
-s_tilemodes_npot,-1
-s_tinyanglearcs,-1
-s_trickycubicstrokes,-1
-s_trimpatheffect,-1
-s_typefacerendering,-1
-s_typefacerendering_pfa,-1
-s_typefacerendering_pfb,-1
-s_typefacestyles_kerning,-1
-s_varied_text_clipped_lcd,-1
-s_varied_text_clipped_no_lcd,-1
-s_varied_text_ignorable_clip_lcd,-1
-s_varied_text_ignorable_clip_no_lcd,-1
-s_vertices,-1
-s_vertices_batching,-1
-s_vertices_scaled_shader,-1
-s_verylarge_picture_image,-1
-s_verylargebitmap,-1
-s_windowrectangles,-1
-s_windowrectangles_mask,-1
-s_xfermodeimagefilter,-1
-s_xfermodes,-1
-s_yuv_nv12_to_rgb_effect,-1
-s_yuv_to_rgb_effect,-1
-s_zeroPath,-1
-s_zero_control_stroke,-1
-s_zero_length_paths_bw,-1
-s_zero_length_paths_dbl_aa,-1
-s_zero_length_paths_dbl_bw,-1
-s_zerolinestroke,-1
-windowrectangles_mask,-1
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_gradients,-1
-animated-image-blurs,-1
-anisotropic_hq,-1
-arccirclegap,-1
-arcofzorro,-1
-arcto,-1
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap_subset_shader,-1
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_s,-1
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_image,-1
-blur2rects,-1
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurimagevmask,-1
-blurquickreject,-1
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug615686,-1
-bug6987,-1
-c_gms,-1
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_strokerect,-1
-clipcubic,-1
-clippedcubic2,-1
-clockwise,-1
-colorcomposefilter_wacky,-1
-coloremoji,-1
-combo-patheffects,-1
-complexclip2_path_aa,-1
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader_bitmap2,-1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-crbug_640176,-1
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-displacement,-1
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-drawTextRSXform,-1
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-extractbitmap,-1
-fancy_gradients,-1
-fancyblobunderline,-1
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-fwidth_squircle,-1
-gamma,-1
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gradient_dirty_laundry,-1
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-hairlines,-1
-hairmodes,-1
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-imagealphathreshold_image,-1
-imageblur,-1
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_low,-1
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-largecircle,-1
-lattice,-1
-lcdoverlap,-1
-lcdtext,-1
-lighting,-1
-lightingshader2,-1
-lineclosepath,-1
-linepath,-1
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-mipmap,-1
-mixedtextblobs,-1
-morphology,-1
-nested_aa,-1
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-ovals,-1
-p3_ovals,-1
-parsedpaths,-1
-patch_image,-1
-path-reverse,-1
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_never_embed,-1
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-pictureimagefilter,-1
-pictureshader,-1
-pictureshader_localwrapper,-1
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_with_backdrop,-1
-scaled_tilemodes_npot,-1
-scaledemoji_rendering,-1
-scaledstrokes,-1
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-sharedcorners,-1
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-smallarc,-1
-smallpaths,-1
-squarehair,-1
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-stroketext,-1
-sweep_tiling,-1
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles_kerning,-1
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-verylarge_picture_image,-1
-verylargebitmap,-1
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinestroke,-1
diff --git a/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-flakes.txt b/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-flakes.txt
deleted file mode 100644
index 601050e5b5d9819456346608ab61afd17003afda..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-flakes.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-# GPU crash
-# https://gitlab.freedesktop.org/gallo/mesa/-/jobs/26385169#L4459
-convex-lineonly-paths
-
-# The following test group pass on the first 3 runs, but may flake eventually.
-# This is an assumption, since those ones were set as failed by Android CTS
-blur2rectsnonninepatch
-bug339297_as_clip
-bug6083
-cliperror
-dashtextcaps
-largeglyphblur
diff --git a/src/freedreno/ci/freedreno-a630-skqp_unittests-fails.txt b/src/freedreno/ci/freedreno-a630-skqp_unittests-fails.txt
deleted file mode 100644
index 13926b75f061ca3af3aeea3c5db65056fa20bd57..0000000000000000000000000000000000000000
--- a/src/freedreno/ci/freedreno-a630-skqp_unittests-fails.txt
+++ /dev/null
@@ -1 +0,0 @@
-SRGBReadWritePixels
diff --git a/src/freedreno/ci/gitlab-ci.yml b/src/freedreno/ci/gitlab-ci.yml
index 56c92e0eb480ebd2f3e36abdbd5a7e2c22028efc..f7127ca9f8a59513d25f213df0d8a804f510115d 100644
--- a/src/freedreno/ci/gitlab-ci.yml
+++ b/src/freedreno/ci/gitlab-ci.yml
@@ -222,13 +222,13 @@ a630_gles_asan:
 
 a630_skqp:
   extends:
-    - .skqp-test
+    - .baremetal-deqp-test
     - .a630-test
+    # SKQP tests both the GL and VK drivers.
     - .freedreno-turnip-rules
   variables:
-    # Possible skqp backends: gl, gles, unitTest and vk
-    SKQP_BACKENDS: gl gles vk unitTest  # space separated values
-    VK_DRIVER: freedreno
+    HWCI_START_XORG: 1
+    DEQP_SUITE: freedreno-a630-skqp
 
 a630_vk:
   extends:
diff --git a/src/intel/ci/deqp-intel-tgl-skqp.toml b/src/intel/ci/deqp-intel-tgl-skqp.toml
new file mode 100644
index 0000000000000000000000000000000000000000..c2921a1122b1b1028a65f05e75fe9387f031f7d6
--- /dev/null
+++ b/src/intel/ci/deqp-intel-tgl-skqp.toml
@@ -0,0 +1,3 @@
+[[skqp]]
+skqp = "/skqp/skqp"
+skqp_assets = "/skqp/assets"
diff --git a/src/intel/ci/deqp-intel-whl-skqp.toml b/src/intel/ci/deqp-intel-whl-skqp.toml
new file mode 100644
index 0000000000000000000000000000000000000000..c2921a1122b1b1028a65f05e75fe9387f031f7d6
--- /dev/null
+++ b/src/intel/ci/deqp-intel-whl-skqp.toml
@@ -0,0 +1,3 @@
+[[skqp]]
+skqp = "/skqp/skqp"
+skqp_assets = "/skqp/assets"
diff --git a/src/intel/ci/gitlab-ci.yml b/src/intel/ci/gitlab-ci.yml
index befddcba006cabf2714070faa9154b6207c6269d..211d669e744976dc04c9f978d213608caadf98fb 100644
--- a/src/intel/ci/gitlab-ci.yml
+++ b/src/intel/ci/gitlab-ci.yml
@@ -340,20 +340,15 @@ iris-whl-traces-performance:
 intel-tgl-skqp:
   extends:
     - .intel-tgl-test
-    - .skqp-test
-    # Demoted to manual until #6565 can be resolved
-    - .test-manual-mr
   variables:
-    # Possible skqp backends: gl, gles, unitTest and vk
-    SKQP_BACKENDS: gl gles vk unitTest  # space separated values
+    DEQP_SUITE: intel-tgl-skqp
     VK_DRIVER: intel
+    HWCI_START_XORG: 1
 
 intel-whl-skqp:
   extends:
     - .intel-whl-test
-    - .skqp-test
-    - .test-manual-mr
   variables:
-    # Possible skqp backends: gl, gles, unitTest and vk
-    SKQP_BACKENDS: gl gles vk unitTest  # space separated values
+    DEQP_SUITE: intel-whl-skqp
     VK_DRIVER: intel
+    HWCI_START_XORG: 1
diff --git a/src/intel/ci/intel-tgl-flakes.txt b/src/intel/ci/intel-tgl-flakes.txt
new file mode 100644
index 0000000000000000000000000000000000000000..68690fae1df8dcc562c4f1484d1016a25dc28a0a
--- /dev/null
+++ b/src/intel/ci/intel-tgl-flakes.txt
@@ -0,0 +1 @@
+gl_localmatriximagefilter
diff --git a/src/intel/ci/intel-tgl-skqp-gl_rendertests.txt b/src/intel/ci/intel-tgl-skqp-gl_rendertests.txt
deleted file mode 100644
index da3f776f34ee8a73ce8b0cba7287380fabd62af0..0000000000000000000000000000000000000000
--- a/src/intel/ci/intel-tgl-skqp-gl_rendertests.txt
+++ /dev/null
@@ -1,710 +0,0 @@
-3dgm,-1
-3x3bitmaprect,0
-AnimCodecPlayer,0
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-PlusMergesAA,0
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-all_bitmap_configs,0
-all_variants_8888,0
-alpha_image,0
-alphagradients,0
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_antialias_inverse,0
-analytic_gradients,-1
-androidblendmodes,0
-animated-image-blurs,-1
-animatedGif,0
-anisotropic_hq,-1
-annotated_text,0
-arccirclegap,-1
-arcofzorro,-1
-arcs_as_paths,-1
-arcto,-1
-arithmode,0
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigbitmaprect_i,1
-bigbitmaprect_s,1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap-image-srgb-legacy,0
-bitmap_premul,0
-bitmap_subset_shader,-1
-bitmapcopy,0
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_rounding,0
-bitmaprect_s,-1
-bitmaprecttest,0
-bitmapshaders,0
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_downscale,0
-bleed_image,-1
-blend,0
-blob_rsxform,0
-blur2rects,-1
-blur2rectsnonninepatch,0
-blurSmallRadii,0
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurcircles2,1000
-blurimagevmask,-1
-blurquickreject,-1
-blurrect_gallery,0
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug339297,0
-bug339297_as_clip,1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug583299,0
-bug591993,0
-bug593049,0
-bug6083,1
-bug615686,-1
-bug6643,0
-bug6783,0
-bug6987,-1
-bug7792,0
-c_gms,-1
-check_small_sigma_offset,0
-chrome_gradtext1,0
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_region,0
-clip_strokerect,-1
-clipcubic,-1
-clipdrawdraw,0
-cliperror,3600
-clipped-bitmap-shaders-clamp,0
-clipped-bitmap-shaders-clamp-hq,0
-clipped-bitmap-shaders-mirror,0
-clipped-bitmap-shaders-mirror-hq,0
-clipped-bitmap-shaders-tile,0
-clipped-bitmap-shaders-tile-hq,0
-clippedcubic,0
-clippedcubic2,-1
-clockwise,-1
-color4f,0
-color4shader,0
-colorcomposefilter_alpha,0
-colorcomposefilter_wacky,-1
-coloremoji,-1
-coloremoji_blendmodes,0
-colorfilteralpha8,0
-colorfilterimagefilter,0
-colorfilterimagefilter_layer,0
-colorfiltershader,50000
-colormatrix,200
-colorwheel,0
-colorwheelnative,0
-combinemaskfilter,0
-combo-patheffects,-1
-compare_atlas_vertices,0
-complexclip2,0
-complexclip2_path_aa,-1
-complexclip2_path_bw,0
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip4_bw,0
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_blur_tiled,0
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader,0
-composeshader_alpha,0
-composeshader_bitmap,0
-composeshader_bitmap2,-1
-composeshader_grid,1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-copyTo4444,0
-copy_on_write_retain,0
-copy_on_write_savelayer,0
-crbug_640176,-1
-crbug_691386,0
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-crbug_899512,0
-crbug_905548,0
-crbug_918512,0
-croppedrects,0
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-dashtextcaps,0
-degenerate_gradients,0
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-discard,0
-displacement,-1
-distantclip,0
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-draw-atlas-colors,0
-drawTextRSXform,-1
-draw_bitmap_rect_skbug4734,0
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregion,0
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-emptystroke,0
-encode,0
-encode-alpha-jpeg,0
-encode-platform,0
-encode-srgb-jpg,0
-encode-srgb-png,0
-encode-srgb-webp,0
-etc1,-1
-extractalpha,0
-extractbitmap,-1
-fadefilter,0
-fancy_gradients,-1
-fancyblobunderline,-1
-fast_slow_blurimagefilter,0
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-format4444,0
-fwidth_squircle,-1
-gamma,-1
-gammagradienttext,0
-gammatext,0
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_clamp_point_rotate,0
-giantbitmap_clamp_point_scale,0
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_mirror_point_rotate,0
-giantbitmap_mirror_point_scale,0
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-giantbitmap_repeat_point_rotate,0
-giantbitmap_repeat_point_scale,0
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gpusamplerstress,0
-gradient_dirty_laundry,-1
-gradient_many_stops,0
-gradient_matrix,0
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_interesting,0
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_many,0
-gradients_many_nodither,0
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-gradtext,1
-grayscalejpg,0
-hairlines,-1
-hairmodes,-1
-hardstop_gradients,0
-highcontrastfilter,0
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image-surface,0
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-image_subset,0
-imagealphathreshold,0
-imagealphathreshold_crop,0
-imagealphathreshold_image,-1
-imagealphathreshold_surface,0
-imageblur,-1
-imageblur2,2
-imageblur_large,0
-imageblurclampmode,1
-imageblurrepeatmode,0
-imageblurtiled,0
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersgraph,1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imagemasksubset,0
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_high,0
-imagesrc2_low,-1
-imagesrc2_med,0
-imagesrc2_none,0
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-jpg-color-cube,0
-largecircle,-1
-largeglyphblur,3000
-lattice,-1
-lattice2,0
-lattice_alpha,0
-lcdblendmodes,0
-lcdoverlap,-1
-lcdtext,-1
-lcdtextsize,0
-lighting,-1
-lightingcolorfilter,0
-lightingshader,0
-lightingshader2,-1
-linear_gradient,110000
-linear_gradient_nodither,120000
-linear_gradient_tiny,0
-lineclosepath,-1
-linepath,-1
-localmatriximagefilter,0
-localmatriximageshader,0
-localmatriximageshader_filtering,0
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-makeRasterImage,0
-makecolorspace,0
-makecolortypeandspace,0
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-megalooper_0x0,1
-megalooper_1x4,1
-megalooper_4x1,1
-mipmap,-1
-mipmap_gray8_srgb,0
-mipmap_srgb,0
-mixedtextblobs,-1
-mixershader,0
-modecolorfilters,0
-morphology,-1
-multipicturedraw_biglayer_simple,0
-multipicturedraw_biglayer_tiled,0
-multipicturedraw_invpathclip_simple,0
-multipicturedraw_invpathclip_tiled,0
-multipicturedraw_noclip_simple,0
-multipicturedraw_noclip_tiled,0
-multipicturedraw_pathclip_simple,0
-multipicturedraw_pathclip_tiled,0
-multipicturedraw_rectclip_simple,0
-multipicturedraw_rectclip_tiled,0
-multipicturedraw_rrectclip_simple,0
-multipicturedraw_rrectclip_tiled,0
-multipicturedraw_sierpinski_simple,0
-multipicturedraw_sierpinski_tiled,0
-nested_aa,-1
-nested_bw,0
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-not_native32_bitmap_config,0
-offsetimagefilter,0
-onebadarc,0
-orientation,1
-ovals,-1
-ovals_as_paths,-1
-overdrawcolorfilter,0
-p3_ovals,-1
-parsedpaths,-1
-patch_alpha,0
-patch_alpha_test,0
-patch_image,-1
-patch_primitive,0
-path-reverse,-1
-path_huge_aa,0
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_crbug_772685,0
-pdf_never_embed,-1
-perlinnoise,200
-perlinnoise_localmatrix,0
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-picture_savelayer,0
-pictureimagefilter,-1
-pictureimagegenerator,0
-pictures,0
-pictureshader,-1
-pictureshader_localwrapper,-1
-pictureshadercache,0
-pictureshadertile,0
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient,0
-radial_gradient2,0
-radial_gradient2_nodither,0
-radial_gradient3,0
-radial_gradient3_nodither,0
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-radial_gradient_precision,-1
-readpixelscodec,0
-readpixelspicture,0
-recordopts,0
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap,0
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_bw,0
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_draw_bw,0
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_clipped,0
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_unclipped,0
-savelayer_with_backdrop,-1
-scale-pixels,-1
-scaled_tilemode_bitmap,0
-scaled_tilemode_gradient,0
-scaled_tilemodes,1
-scaled_tilemodes_npot,-1
-scaledemoji,1
-scaledemoji_rendering,-1
-scaledemojipos,1
-scaledstrokes,-1
-scalepixels_unpremul,0
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-shallow_gradient_conical,0
-shallow_gradient_conical_nodither,0
-shallow_gradient_linear,0
-shallow_gradient_linear_nodither,0
-shallow_gradient_radial,0
-shallow_gradient_radial_nodither,0
-shallow_gradient_sweep,0
-shallow_gradient_sweep_nodither,0
-sharedcorners,-1
-showmiplevels2_255x255,0
-showmiplevels2_255x256,0
-showmiplevels2_256x255,0
-showmiplevels2_256x256,0
-showmiplevels_255,0
-showmiplevels_256,0
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_aaclip,29
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-simpleshapes_bw,0
-skbug_257,-1
-skbug_4868,-1
-skbug_5321,0
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-skottie_colorize,-1
-skottie_multiframe,-1
-skottie_webfont,-1
-small_color_stop,0
-smallarc,-1
-smallpaths,-1
-spritebitmap,0
-squarehair,-1
-srcmode,1
-srgb_colorfilter,0
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerect_anisotropic_5408,0
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-strokes_zoomed,0
-stroketext,-1
-surface_underdraw,0
-surfacenew,0
-surfaceprops,0
-sweep_tiling,-1
-tablecolorfilter,0
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblob_intercepts,1
-textblobblockreordering,0
-textblobcolortrans,0
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-textfilter_color,0
-textfilter_image,0
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiled_picture_shader,0
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_bitmap,0
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-tinybitmap,0
-tosrgb_colorfilter,0
-transparency_check,0
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles,0
-typefacestyles_kerning,-1
-unpremul,0
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-wacky_yuv_formats,0
-wacky_yuv_formats_cs,0
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-xfermodes2,1
-xfermodes3,0
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_aa,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinedash,0
-zerolinestroke,-1
diff --git a/src/intel/ci/intel-tgl-skqp-gles_rendertests.txt b/src/intel/ci/intel-tgl-skqp-gles_rendertests.txt
deleted file mode 100644
index 32a46dd2fda76173514d9a55558ce61001c623c6..0000000000000000000000000000000000000000
--- a/src/intel/ci/intel-tgl-skqp-gles_rendertests.txt
+++ /dev/null
@@ -1,710 +0,0 @@
-3dgm,-1
-3x3bitmaprect,0
-AnimCodecPlayer,0
-BlurDrawImage,-1
-CubicStroke,-1
-OverStroke,-1
-PlusMergesAA,0
-aaclip,-1
-aarectmodes,-1
-aaxfermodes,-1
-addarc,-1
-addarc_meas,-1
-all_bitmap_configs,0
-all_variants_8888,0
-alpha_image,0
-alphagradients,0
-analytic_antialias_convex,-1
-analytic_antialias_general,-1
-analytic_antialias_inverse,0
-analytic_gradients,-1
-androidblendmodes,0
-animated-image-blurs,-1
-animatedGif,0
-anisotropic_hq,-1
-annotated_text,0
-arccirclegap,-1
-arcofzorro,-1
-arcs_as_paths,-1
-arcto,-1
-arithmode,0
-b_119394958,-1
-badpaint,-1
-bezier_conic_effects,-1
-bezier_quad_effects,-1
-beziers,-1
-big_rrect_circle_aa_effect,-1
-big_rrect_circular_corner_aa_effect,-1
-big_rrect_ellipse_aa_effect,-1
-big_rrect_elliptical_corner_aa_effect,-1
-big_rrect_rect_aa_effect,-1
-bigbitmaprect_i,1
-bigbitmaprect_s,1
-bigblurs,-1
-bigconic,-1
-bigmatrix,-1
-bigrect,-1
-bigtext,-1
-bigtileimagefilter,-1
-bitmap-image-srgb-legacy,0
-bitmap_premul,0
-bitmap_subset_shader,-1
-bitmapcopy,0
-bitmapfilters,-1
-bitmaprect_i,-1
-bitmaprect_rounding,0
-bitmaprect_s,-1
-bitmaprecttest,0
-bitmapshaders,0
-bitmaptiled_fractional_horizontal,-1
-bitmaptiled_fractional_vertical,-1
-bleed,-1
-bleed_alpha_bmp,-1
-bleed_alpha_bmp_shader,-1
-bleed_alpha_image,-1
-bleed_alpha_image_shader,-1
-bleed_downscale,0
-bleed_image,-1
-blend,0
-blob_rsxform,0
-blur2rects,-1
-blur2rectsnonninepatch,0
-blurSmallRadii,0
-blur_ignore_xform_circle,-1
-blur_ignore_xform_rect,-1
-blur_ignore_xform_rrect,-1
-blur_image,-1
-blurcircles,-1
-blurcircles2,1000
-blurimagevmask,-1
-blurquickreject,-1
-blurrect_gallery,0
-blurrects,-1
-blurredclippedcircle,-1
-blurroundrect-WH-100x100-unevenCorners,-1
-blurs,-1
-bmp_filter_quality_repeat,-1
-bug339297,0
-bug339297_as_clip,1
-bug5099,-1
-bug5252,-1
-bug530095,-1
-bug583299,0
-bug591993,0
-bug593049,0
-bug6083,1
-bug615686,-1
-bug6643,0
-bug6783,0
-bug6987,-1
-bug7792,0
-c_gms,-1
-check_small_sigma_offset,0
-chrome_gradtext1,0
-chrome_gradtext2,-1
-circle_sizes,-1
-circles,-1
-circular-clips,-1
-circular_arcs_fill,-1
-circular_arcs_hairline,-1
-circular_arcs_stroke_and_fill_butt,-1
-circular_arcs_stroke_and_fill_round,-1
-circular_arcs_stroke_and_fill_square,-1
-circular_arcs_stroke_butt,-1
-circular_arcs_stroke_round,-1
-circular_arcs_stroke_square,-1
-circular_arcs_weird,-1
-clamped_gradients,-1
-clamped_gradients_nodither,-1
-clip_region,0
-clip_strokerect,-1
-clipcubic,-1
-clipdrawdraw,0
-cliperror,3600
-clipped-bitmap-shaders-clamp,0
-clipped-bitmap-shaders-clamp-hq,0
-clipped-bitmap-shaders-mirror,0
-clipped-bitmap-shaders-mirror-hq,0
-clipped-bitmap-shaders-tile,0
-clipped-bitmap-shaders-tile-hq,0
-clippedcubic,0
-clippedcubic2,-1
-clockwise,-1
-color4f,0
-color4shader,0
-colorcomposefilter_alpha,0
-colorcomposefilter_wacky,-1
-coloremoji,-1
-coloremoji_blendmodes,0
-colorfilteralpha8,0
-colorfilterimagefilter,0
-colorfilterimagefilter_layer,0
-colorfiltershader,50000
-colormatrix,200
-colorwheel,0
-colorwheelnative,0
-combinemaskfilter,0
-combo-patheffects,-1
-compare_atlas_vertices,0
-complexclip2,0
-complexclip2_path_aa,-1
-complexclip2_path_bw,0
-complexclip2_rect_aa,-1
-complexclip2_rrect_aa,-1
-complexclip2_rrect_bw,-1
-complexclip3_complex,-1
-complexclip3_simple,-1
-complexclip4_aa,-1
-complexclip4_bw,0
-complexclip_aa,-1
-complexclip_aa_invert,-1
-complexclip_aa_layer,-1
-complexclip_aa_layer_invert,-1
-complexclip_blur_tiled,0
-complexclip_bw,-1
-complexclip_bw_invert,-1
-complexclip_bw_layer,-1
-complexclip_bw_layer_invert,-1
-composeshader,0
-composeshader_alpha,0
-composeshader_bitmap,0
-composeshader_bitmap2,-1
-composeshader_grid,1
-concavepaths,-1
-conicpaths,-1
-const_color_processor,-1
-contour_start,-1
-convex-lineonly-paths,-1
-convex-lineonly-paths-stroke-and-fill,-1
-convex-polygon-inset,-1
-convex_poly_clip,-1
-convex_poly_effect,-1
-convexpaths,-1
-copyTo4444,0
-copy_on_write_retain,0
-copy_on_write_savelayer,0
-crbug_640176,-1
-crbug_691386,0
-crbug_788500,-1
-crbug_847759,-1
-crbug_884166,-1
-crbug_887103,-1
-crbug_888453,-1
-crbug_892988,-1
-crbug_899512,0
-crbug_905548,0
-crbug_918512,0
-croppedrects,0
-cross_context_image,-1
-cubicclosepath,-1
-cubicpath,-1
-daa,-1
-dash_line_zero_off_interval,-1
-dashcircle,-1
-dashcircle2,-1
-dashcubics,-1
-dashing,-1
-dashing2,-1
-dashing3,-1
-dashing4,-1
-dashing5_aa,-1
-dashing5_bw,-1
-dashtextcaps,0
-degenerate_gradients,0
-degeneratesegments,-1
-dftext,-1
-dftext_blob_persp,-1
-discard,0
-displacement,-1
-distantclip,0
-dont_clip_to_layer,-1
-downsamplebitmap_checkerboard_high,-1
-downsamplebitmap_checkerboard_low,-1
-downsamplebitmap_checkerboard_medium,-1
-downsamplebitmap_checkerboard_none,-1
-downsamplebitmap_image_high,-1
-downsamplebitmap_image_low,-1
-downsamplebitmap_image_medium,-1
-downsamplebitmap_image_none,-1
-downsamplebitmap_text_high,-1
-downsamplebitmap_text_low,-1
-downsamplebitmap_text_medium,-1
-downsamplebitmap_text_none,-1
-draw-atlas,-1
-draw-atlas-colors,0
-drawTextRSXform,-1
-draw_bitmap_rect_skbug4734,0
-draw_image_set,-1
-draw_image_set_rect_to_rect,-1
-draw_quad_set,-1
-drawable,-1
-drawbitmaprect-imagerect-subset,-1
-drawbitmaprect-subset,-1
-drawlooper,-1
-drawminibitmaprect,-1
-drawminibitmaprect_aa,-1
-drawregion,0
-drawregionmodes,-1
-dropshadowimagefilter,-1
-drrect,-1
-drrect_small_inner,-1
-dstreadshuffle,-1
-emboss,-1
-emptypath,-1
-emptystroke,0
-encode,0
-encode-alpha-jpeg,0
-encode-platform,0
-encode-srgb-jpg,0
-encode-srgb-png,0
-encode-srgb-webp,0
-etc1,-1
-extractalpha,0
-extractbitmap,-1
-fadefilter,0
-fancy_gradients,-1
-fancyblobunderline,-1
-fast_slow_blurimagefilter,0
-fatpathfill,-1
-fillcircle,-1
-filltypes,-1
-filltypespersp,-1
-filterbitmap_checkerboard_192_192,-1
-filterbitmap_checkerboard_32_2,-1
-filterbitmap_checkerboard_32_32,-1
-filterbitmap_checkerboard_32_32_g8,-1
-filterbitmap_checkerboard_32_8,-1
-filterbitmap_checkerboard_4_4,-1
-filterbitmap_image_color_wheel.png,-1
-filterbitmap_image_mandrill_128.png,-1
-filterbitmap_image_mandrill_16.png,-1
-filterbitmap_image_mandrill_256.png,-1
-filterbitmap_image_mandrill_32.png,-1
-filterbitmap_image_mandrill_512.png,-1
-filterbitmap_image_mandrill_64.png,-1
-filterbitmap_image_mandrill_64.png_g8,-1
-filterbitmap_text_10.00pt,-1
-filterbitmap_text_3.00pt,-1
-filterbitmap_text_7.00pt,-1
-filterbug,-1
-filterfastbounds,-1
-filterindiabox,-1
-flippity,-1
-fontcache,-1
-fontcache-mt,-1
-fontmgr_bounds,-1
-fontmgr_bounds_0.75_0,-1
-fontmgr_bounds_1_-0.25,-1
-fontmgr_iter,-1
-fontmgr_match,-1
-fontregen,-1
-fontscaler,-1
-fontscalerdistortable,-1
-format4444,0
-fwidth_squircle,-1
-gamma,-1
-gammagradienttext,0
-gammatext,0
-getpostextpath,-1
-giantbitmap_clamp_bilerp_rotate,-1
-giantbitmap_clamp_bilerp_scale,-1
-giantbitmap_clamp_point_rotate,0
-giantbitmap_clamp_point_scale,0
-giantbitmap_mirror_bilerp_rotate,-1
-giantbitmap_mirror_bilerp_scale,-1
-giantbitmap_mirror_point_rotate,0
-giantbitmap_mirror_point_scale,0
-giantbitmap_repeat_bilerp_rotate,-1
-giantbitmap_repeat_bilerp_scale,-1
-giantbitmap_repeat_point_rotate,0
-giantbitmap_repeat_point_scale,0
-glyph_pos_h_b,-1
-glyph_pos_h_f,-1
-glyph_pos_h_s,-1
-glyph_pos_n_b,-1
-glyph_pos_n_f,-1
-glyph_pos_n_s,-1
-gpusamplerstress,0
-gradient_dirty_laundry,-1
-gradient_many_stops,0
-gradient_matrix,0
-gradients,-1
-gradients4f,-1
-gradients4f_nodither,-1
-gradients_2pt_conical_edge,-1
-gradients_2pt_conical_edge_mirror,-1
-gradients_2pt_conical_edge_nodither,-1
-gradients_2pt_conical_edge_repeat,-1
-gradients_2pt_conical_inside,-1
-gradients_2pt_conical_inside_mirror,-1
-gradients_2pt_conical_inside_nodither,-1
-gradients_2pt_conical_inside_repeat,-1
-gradients_2pt_conical_outside,-1
-gradients_2pt_conical_outside_mirror,-1
-gradients_2pt_conical_outside_nodither,-1
-gradients_2pt_conical_outside_repeat,-1
-gradients_degenerate_2pt,-1
-gradients_degenerate_2pt_nodither,-1
-gradients_dup_color_stops,-1
-gradients_interesting,0
-gradients_local_perspective,-1
-gradients_local_perspective_nodither,-1
-gradients_many,0
-gradients_many_nodither,0
-gradients_no_texture,-1
-gradients_no_texture_nodither,-1
-gradients_nodither,-1
-gradients_view_perspective,-1
-gradients_view_perspective_nodither,-1
-gradtext,1
-grayscalejpg,0
-hairlines,-1
-hairmodes,-1
-hardstop_gradients,0
-highcontrastfilter,0
-hittestpath,-1
-hsl,-1
-hugebitmapshader,-1
-image-cacherator-from-picture,-1
-image-cacherator-from-raster,-1
-image-cacherator-from-texture,-1
-image-picture,-1
-image-shader,-1
-image-surface,0
-image_from_yuv_textures,-1
-image_scale_aligned,-1
-image_subset,0
-imagealphathreshold,0
-imagealphathreshold_crop,0
-imagealphathreshold_image,-1
-imagealphathreshold_surface,0
-imageblur,-1
-imageblur2,2
-imageblur_large,0
-imageblurclampmode,1
-imageblurrepeatmode,0
-imageblurtiled,0
-imagefilters_xfermodes,-1
-imagefiltersbase,-1
-imagefiltersclipped,-1
-imagefilterscropexpand,-1
-imagefilterscropped,-1
-imagefiltersgraph,1
-imagefiltersscaled,-1
-imagefiltersstroked,-1
-imagefilterstransformed,-1
-imagemagnifier,-1
-imagemagnifier_cropped,-1
-imagemakewithfilter,-1
-imagemasksubset,0
-imageresizetiled,-1
-imagesource,-1
-imagesrc2_high,0
-imagesrc2_low,-1
-imagesrc2_med,0
-imagesrc2_none,0
-innershapes,-1
-innershapes_bw,-1
-internal_links,-1
-inverse_paths,-1
-jpg-color-cube,0
-largecircle,-1
-largeglyphblur,3000
-lattice,-1
-lattice2,0
-lattice_alpha,0
-lcdblendmodes,0
-lcdoverlap,-1
-lcdtext,-1
-lcdtextsize,0
-lighting,-1
-lightingcolorfilter,0
-lightingshader,0
-lightingshader2,-1
-linear_gradient,110000
-linear_gradient_nodither,120000
-linear_gradient_tiny,0
-lineclosepath,-1
-linepath,-1
-localmatriximagefilter,0
-localmatriximageshader,0
-localmatriximageshader_filtering,0
-localmatrixshader_nested,-1
-longlinedash,-1
-longpathdash,-1
-longwavyline,-1
-lumafilter,-1
-maddash,-1
-makeRasterImage,0
-makecolorspace,0
-makecolortypeandspace,0
-mandoline,-1
-manyarcs,-1
-manycircles,-1
-manyrrects,-1
-matrixconvolution,-1
-matrixconvolution_color,-1
-matriximagefilter,-1
-megalooper_0x0,1
-megalooper_1x4,1
-megalooper_4x1,1
-mipmap,-1
-mipmap_gray8_srgb,0
-mipmap_srgb,0
-mixedtextblobs,-1
-mixershader,0
-modecolorfilters,0
-morphology,-1
-multipicturedraw_biglayer_simple,0
-multipicturedraw_biglayer_tiled,0
-multipicturedraw_invpathclip_simple,0
-multipicturedraw_invpathclip_tiled,0
-multipicturedraw_noclip_simple,0
-multipicturedraw_noclip_tiled,0
-multipicturedraw_pathclip_simple,0
-multipicturedraw_pathclip_tiled,0
-multipicturedraw_rectclip_simple,0
-multipicturedraw_rectclip_tiled,0
-multipicturedraw_rrectclip_simple,0
-multipicturedraw_rrectclip_tiled,0
-multipicturedraw_sierpinski_simple,0
-multipicturedraw_sierpinski_tiled,0
-nested_aa,-1
-nested_bw,0
-nested_flipY_aa,-1
-nested_flipY_bw,-1
-new_texture_image,-1
-ninepatch-stretch,-1
-nonclosedpaths,-1
-not_native32_bitmap_config,0
-offsetimagefilter,0
-onebadarc,0
-orientation,1
-ovals,-1
-ovals_as_paths,-1
-overdrawcolorfilter,0
-p3_ovals,-1
-parsedpaths,-1
-patch_alpha,0
-patch_alpha_test,0
-patch_image,-1
-patch_primitive,0
-path-reverse,-1
-path_huge_aa,0
-path_huge_crbug_800804,-1
-path_mask_cache,-1
-patheffect,-1
-pathfill,-1
-pathinterior,-1
-pathinvfill,-1
-pathopsinverse,-1
-pathopsskpclip,-1
-pdf_crbug_772685,0
-pdf_never_embed,-1
-perlinnoise,200
-perlinnoise_localmatrix,0
-persp_images,-1
-persp_shaders_aa,-1
-persp_shaders_bw,-1
-picture_savelayer,0
-pictureimagefilter,-1
-pictureimagegenerator,0
-pictures,0
-pictureshader,-1
-pictureshader_localwrapper,-1
-pictureshadercache,0
-pictureshadertile,0
-pixel_snap_combo,-1
-pixel_snap_line,-1
-pixel_snap_point,-1
-pixel_snap_rect,-1
-points,-1
-poly2poly,-1
-polygons,-1
-quadcap,-1
-quadclosepath,-1
-quadpath,-1
-radial_gradient,0
-radial_gradient2,0
-radial_gradient2_nodither,0
-radial_gradient3,0
-radial_gradient3_nodither,0
-radial_gradient4,-1
-radial_gradient4_nodither,-1
-radial_gradient_precision,-1
-readpixelscodec,0
-readpixelspicture,0
-recordopts,0
-rectangle_texture,-1
-rects,-1
-rects_as_paths,-1
-repeated_bitmap,0
-repeated_bitmap_jpg,-1
-resizeimagefilter,-1
-rotate_imagefilter,-1
-rotatedcubicpath,-1
-roundrects,-1
-rrect,-1
-rrect_clip_aa,-1
-rrect_clip_bw,0
-rrect_clip_draw_paint,-1
-rrect_draw_aa,-1
-rrect_draw_bw,0
-rrect_effect,-1
-save_behind,-1
-savelayer_clipmask,-1
-savelayer_clipped,0
-savelayer_coverage,-1
-savelayer_initfromprev,-1
-savelayer_maskfilter,-1
-savelayer_unclipped,0
-savelayer_with_backdrop,-1
-scale-pixels,-1
-scaled_tilemode_bitmap,0
-scaled_tilemode_gradient,0
-scaled_tilemodes,1
-scaled_tilemodes_npot,-1
-scaledemoji,1
-scaledemoji_rendering,-1
-scaledemojipos,1
-scaledstrokes,-1
-scalepixels_unpremul,0
-shadermaskfilter_gradient,-1
-shadermaskfilter_image,-1
-shadermaskfilter_localmatrix,-1
-shadertext3,-1
-shadow_utils,-1
-shadow_utils_gray,-1
-shadow_utils_occl,-1
-shadows,-1
-shallow_gradient_conical,0
-shallow_gradient_conical_nodither,0
-shallow_gradient_linear,0
-shallow_gradient_linear_nodither,0
-shallow_gradient_radial,0
-shallow_gradient_radial_nodither,0
-shallow_gradient_sweep,0
-shallow_gradient_sweep_nodither,0
-sharedcorners,-1
-showmiplevels2_255x255,0
-showmiplevels2_255x256,0
-showmiplevels2_256x255,0
-showmiplevels2_256x256,0
-showmiplevels_255,0
-showmiplevels_256,0
-simple-magnification,-1
-simple-offsetimagefilter,-1
-simple-polygon-offset,-1
-simpleaaclip_aaclip,0
-simpleaaclip_path,-1
-simpleaaclip_rect,-1
-simpleblurroundrect,-1
-simplerect,-1
-simpleshapes,-1
-simpleshapes_bw,-1
-skbug_257,-1
-skbug_4868,-1
-skbug_5321,0
-skbug_8664,-1
-skinning,-1
-skinning_cached,-1
-skinning_cpu,-1
-skinning_cpu_cached,-1
-skottie_colorize,-1
-skottie_multiframe,-1
-skottie_webfont,-1
-small_color_stop,0
-smallarc,-1
-smallpaths,-1
-spritebitmap,0
-squarehair,-1
-srcmode,1
-srgb_colorfilter,0
-stlouisarch,-1
-stringart,-1
-stroke-fill,-1
-stroke_rect_shader,-1
-strokecircle,-1
-strokedlines,-1
-strokerect,-1
-strokerect_anisotropic_5408,0
-strokerects,-1
-strokes3,-1
-strokes_poly,-1
-strokes_round,-1
-strokes_zoomed,0
-stroketext,-1
-surface_underdraw,0
-surfacenew,0
-surfaceprops,0
-sweep_tiling,-1
-tablecolorfilter,0
-tall_stretched_bitmaps,-1
-teenyStrokes,-1
-testgradient,-1
-text_scale_skew,-1
-textblob,-1
-textblob_intercepts,1
-textblobblockreordering,0
-textblobcolortrans,0
-textblobgeometrychange,-1
-textbloblooper,-1
-textblobmixedsizes,-1
-textblobmixedsizes_df,-1
-textblobrandomfont,-1
-textblobshader,-1
-textblobtransforms,-1
-textblobuseaftergpufree,-1
-textfilter_color,0
-textfilter_image,0
-texture_domain_effect,-1
-texture_domain_effect_bilerp,-1
-texture_domain_effect_mipmap,-1
-thinconcavepaths,-1
-thinrects,-1
-thinstrokedrects,-1
-tiled_picture_shader,0
-tiledscaledbitmap,-1
-tileimagefilter,-1
-tilemode_bitmap,0
-tilemode_decal,-1
-tilemode_gradient,-1
-tilemodes,-1
-tilemodes_npot,-1
-tinyanglearcs,-1
-tinybitmap,0
-tosrgb_colorfilter,0
-transparency_check,0
-trickycubicstrokes,-1
-trimpatheffect,-1
-typefacerendering,-1
-typefacerendering_pfa,-1
-typefacerendering_pfb,-1
-typefacestyles,0
-typefacestyles_kerning,-1
-unpremul,0
-varied_text_clipped_lcd,-1
-varied_text_clipped_no_lcd,-1
-varied_text_ignorable_clip_lcd,-1
-varied_text_ignorable_clip_no_lcd,-1
-vertices,-1
-vertices_batching,-1
-vertices_scaled_shader,-1
-wacky_yuv_formats,0
-wacky_yuv_formats_cs,0
-windowrectangles,-1
-windowrectangles_mask,-1
-xfermodeimagefilter,-1
-xfermodes,-1
-xfermodes2,1
-xfermodes3,0
-yuv_nv12_to_rgb_effect,-1
-yuv_to_rgb_effect,-1
-zeroPath,-1
-zero_control_stroke,-1
-zero_length_paths_aa,-1
-zero_length_paths_bw,-1
-zero_length_paths_dbl_aa,-1
-zero_length_paths_dbl_bw,-1
-zerolinedash,0
-zerolinestroke,-1