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
//
// 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.
//
// trace_interface:
// Interface shared between trace libraries and the test suite.
//
#ifndef UTIL_CAPTURE_TRACE_INTERFACE_H_
#define UTIL_CAPTURE_TRACE_INTERFACE_H_
#include <string>
#include <vector>
namespace angle
{
static constexpr size_t kTraceInfoMaxNameLen = 128;
enum class ReplayResourceMode
{
Active,
All,
};
struct TraceInfo
{
char name[kTraceInfoMaxNameLen];
bool initialized = false;
uint32_t contextClientMajorVersion;
uint32_t contextClientMinorVersion;
uint32_t frameStart;
uint32_t frameEnd;
uint32_t drawSurfaceWidth;
uint32_t drawSurfaceHeight;
uint32_t drawSurfaceColorSpace;
uint32_t displayPlatformType;
uint32_t displayDeviceType;
int configRedBits;
int configBlueBits;
int configGreenBits;
int configAlphaBits;
int configDepthBits;
int configStencilBits;
bool isBinaryDataCompressed;
bool areClientArraysEnabled;
bool isBindGeneratesResourcesEnabled;
bool isWebGLCompatibilityEnabled;
bool isRobustResourceInitEnabled;
std::vector<std::string> traceFiles;
int windowSurfaceContextId;
std::vector<std::string> requiredExtensions;
std::vector<int> keyFrames;
};
// Test suite calls into the trace library (fixture).
struct TraceFunctions
{
virtual void SetupReplay() = 0;
virtual void ReplayFrame(uint32_t frameIndex) = 0;
virtual void ResetReplay() = 0;
virtual void FinishReplay() = 0;
virtual void SetBinaryDataDir(const char *dataDir) = 0;
virtual void SetReplayResourceMode(const ReplayResourceMode resourceMode);
virtual void SetTraceGzPath(const std::string &traceGzPath);
virtual void SetTraceInfo(const TraceInfo &traceInfo);
virtual ~TraceFunctions() {}
};
// Trace library (fixture) calls into the test suite.
struct TraceCallbacks
{
virtual uint8_t *LoadBinaryData(const char *fileName) = 0;
virtual ~TraceCallbacks() {}
};
} // namespace angle
#endif // UTIL_CAPTURE_TRACE_INTERFACE_H_