Hash :
a9868110
Author :
Date :
2022-09-15T17:29:04
Add support for testing with Mesa + Zink. To run a trace test with zink, use --use-gl=zink. Bug: angleproject:7689 Change-Id: I70073756f903db1c224fe6175d55be4cad637aca Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3899382 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
//
// 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;
};
namespace params
{
template <typename ParamsT>
ParamsT D3D11(const ParamsT &in)
{
ParamsT out = in;
out.eglParameters = angle::egl_platform::D3D11();
return out;
}
template <typename ParamsT>
ParamsT Metal(const ParamsT &in)
{
ParamsT out = in;
out.eglParameters = angle::egl_platform::METAL();
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 VulkanMockICD(const ParamsT &in)
{
ParamsT out = in;
out.eglParameters = angle::egl_platform::VULKAN_NULL();
return out;
}
template <typename ParamsT>
ParamsT VulkanSwiftShader(const ParamsT &in)
{
ParamsT out = in;
out.eglParameters = angle::egl_platform::VULKAN_SWIFTSHADER();
return out;
}
template <typename ParamsT>
ParamsT WGL(const ParamsT &in)
{
ParamsT out = in;
out.driver = angle::GLESDriverType::SystemWGL;
return out;
}
template <typename ParamsT>
ParamsT EGL(const ParamsT &in)
{
ParamsT out = in;
out.driver = angle::GLESDriverType::SystemEGL;
return out;
}
template <typename ParamsT>
ParamsT Zink(const ParamsT &in)
{
ParamsT out = in;
out.driver = angle::GLESDriverType::ZinkEGL;
return out;
}
template <typename ParamsT>
ParamsT Native(const ParamsT &in)
{
#if defined(ANGLE_PLATFORM_WINDOWS)
return WGL(in);
#else
return EGL(in);
#endif
}
} // namespace params
#endif // TESTS_PERF_TESTS_DRAW_CALL_PERF_PARAMS_H_