Edit

kc3-lang/angle/src/tests/perf_tests/DrawCallPerfParams.h

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2020-03-15 17:28:43
    Hash : 5df2c9ea
    Message : Refactor ANGLE common test utils. This reduces code duplication by including a common set of sources in a single place. New test sets will be a bit easier to add. It also encapsulates the dependencies a bit better when we pull the test utils out of the test targets. Unblocks a follow-up CL that moves the trace perf test sources into their own file so we can re-enable optimizations in the main perf test target. New warnings popped up in a few of the files because of the new source set enabling more warnings. This CL also fixes all of those. Bug: angleproject:3630 Change-Id: Ic30cb30fb4288c4dbbbd29f9bdf04be51e8a6b30 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2103083 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Yuly Novikov <ynovikov@chromium.org>

  • src/tests/perf_tests/DrawCallPerfParams.h
  • //
    // Copyright 2017 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    // DrawCallPerfParams.h:
    //   Parametrization for performance tests for ANGLE draw call overhead.
    //
    
    #ifndef TESTS_PERF_TESTS_DRAW_CALL_PERF_PARAMS_H_
    #define TESTS_PERF_TESTS_DRAW_CALL_PERF_PARAMS_H_
    
    #include <ostream>
    
    #include "ANGLEPerfTest.h"
    #include "test_utils/angle_test_configs.h"
    
    struct DrawCallPerfParams : public RenderTestParams
    {
        // Common default options
        DrawCallPerfParams();
        ~DrawCallPerfParams() override;
    
        std::string story() const override;
    
        double runTimeSeconds;
        int numTris;
        bool offscreen;
    };
    
    namespace params
    {
    template <typename ParamsT>
    ParamsT D3D9(const ParamsT &in)
    {
        ParamsT out       = in;
        out.eglParameters = angle::egl_platform::D3D9();
        return out;
    }
    
    template <typename ParamsT>
    ParamsT D3D11(const ParamsT &in)
    {
        ParamsT out       = in;
        out.eglParameters = angle::egl_platform::D3D11();
        return out;
    }
    
    template <typename ParamsT>
    ParamsT GL(const ParamsT &in)
    {
        ParamsT out       = in;
        out.eglParameters = angle::egl_platform::OPENGL_OR_GLES();
        return out;
    }
    
    template <typename ParamsT>
    ParamsT GL3(const ParamsT &in)
    {
        ParamsT out       = in;
        out.eglParameters = angle::egl_platform::OPENGL_OR_GLES(3, 0);
        return out;
    }
    
    template <typename ParamsT>
    ParamsT Vulkan(const ParamsT &in)
    {
        ParamsT out       = in;
        out.eglParameters = angle::egl_platform::VULKAN();
        return out;
    }
    
    template <typename ParamsT>
    ParamsT WGL(const ParamsT &in)
    {
        ParamsT out = in;
        out.driver  = angle::GLESDriverType::SystemWGL;
        return out;
    }
    
    }  // namespace params
    
    #endif  // TESTS_PERF_TESTS_DRAW_CALL_PERF_PARAMS_H_