Hash :
d85de0e9
Author :
Date :
2023-08-09T14:15:56
Capture/Replay: Add optional replay of trimmed resources
This CL:
- Adds '--include-inactive-resources' option to
angle_trace_tests
- Removes the 'trim-enabled' option
- Outputs all previously trimmed shaders/programs to trace file
in a new Setup function, SetupReplayContextSharedInactive()
which is executed only if the new option is specified
- Modifies CaptureTest to add inactive resources, but does not
set the include-inactive-resources flag
Bug: b/296055694
Change-Id: I33b18d5da727d55c90c2012c2bf64b1413521429
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4781552
Reviewed-by: Cody Northrop <cnorthrop@google.com>
Commit-Queue: Mark Łobodziński <mark@lunarg.com>
Reviewed-by: Roman Lavrov <romanl@google.com>
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
//
// Copyright 2023 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.
//
#include "test_utils/ANGLETest.h"
#include "test_utils/gl_raii.h"
#include "util/random_utils.h"
#include "util/shader_utils.h"
#include "util/test_utils.h"
using namespace angle;
namespace
{
class CapturedTest : public ANGLETest<>
{
protected:
CapturedTest()
{
setWindowWidth(128);
setWindowHeight(128);
setConfigRedBits(8);
setConfigGreenBits(8);
setConfigBlueBits(8);
setConfigAlphaBits(8);
setConfigDepthBits(24);
setConfigStencilBits(8);
}
void testSetUp() override
{
// Calls not captured because we setup Start frame to MEC.
// TODO: why are these framebuffers not showing up in the capture?
mFBOs.resize(2, 0);
glGenFramebuffers(2, mFBOs.data());
constexpr char kInactiveVS[] = R"(precision highp float;
void main(void) {
gl_Position = vec4(0.5, 0.5, 0.5, 1.0);
})";
inactiveProgram = glCreateProgram();
inactiveShader = glCreateShader(GL_VERTEX_SHADER);
const char *sourceArray[1] = {kInactiveVS};
glShaderSource(inactiveShader, 1, sourceArray, 0);
glCompileShader(inactiveShader);
glAttachShader(inactiveProgram, inactiveShader);
ASSERT_GL_NO_ERROR();
}
void testTearDown() override
{
// Not reached during capture as we hit the End frame earlier.
if (!mFBOs.empty())
{
glDeleteFramebuffers(static_cast<GLsizei>(mFBOs.size()), mFBOs.data());
}
glDeleteProgram(inactiveProgram);
glDeleteShader(inactiveShader);
}
void frame1();
void frame2();
std::vector<GLuint> mFBOs;
GLuint inactiveProgram;
GLuint inactiveShader;
};
void CapturedTest::frame1()
{
glClearColor(0.25f, 0.5f, 0.5f, 0.5f);
glClear(GL_COLOR_BUFFER_BIT);
EXPECT_PIXEL_NEAR(0, 0, 64, 128, 128, 128, 1.0);
}
void CapturedTest::frame2()
{
// TODO: using local objects (with RAII helpers) here that create and destroy objects within the
// frame. Maybe move some of this to test Setup.
constexpr char kVS[] = R"(precision highp float;
attribute vec3 attr1;
void main(void) {
gl_Position = vec4(attr1, 1.0);
})";
constexpr char kFS[] = R"(precision highp float;
void main(void) {
gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0);
})";
GLBuffer emptyBuffer;
glBindBuffer(GL_ARRAY_BUFFER, emptyBuffer);
ANGLE_GL_PROGRAM(program, kVS, kFS);
glBindAttribLocation(program, 0, "attr1");
glLinkProgram(program);
ASSERT_TRUE(CheckLinkStatusAndReturnProgram(program, true));
glUseProgram(program);
// Use non-existing attribute 1.
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_UNSIGNED_BYTE, false, 1, 0);
glDrawArrays(GL_TRIANGLES, 0, 3);
EXPECT_GL_NO_ERROR();
// Note: RAII destructors called here causing additional GL calls.
}
// Test captured by capture_tests.py
TEST_P(CapturedTest, MultiFrame)
{
// Swap before the first frame so that setup gets its own frame
swapBuffers();
frame1();
swapBuffers();
frame2();
// Empty frames to reach capture end.
for (int i = 0; i < 10; i++)
{
swapBuffers();
}
// Note: test teardown adds an additonal swap in
// ANGLETestBase::ANGLETestPreTearDown() when --angle-per-test-capture-label
}
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(CapturedTest);
ANGLE_INSTANTIATE_TEST_ES3(CapturedTest);
} // anonymous namespace