summaryrefslogtreecommitdiffstats
path: root/src/video_core/buffer_cache/buffer_cache.cpp
blob: ab32294c831602fd8e0bcfb3cecabf3f7fe41084 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/microprofile.h"

namespace VideoCommon {

MICROPROFILE_DEFINE(GPU_PrepareBuffers, "GPU", "Prepare buffers", MP_RGB(224, 128, 128));
MICROPROFILE_DEFINE(GPU_BindUploadBuffers, "GPU", "Bind and upload buffers", MP_RGB(224, 128, 128));
MICROPROFILE_DEFINE(GPU_DownloadMemory, "GPU", "Download buffers", MP_RGB(224, 128, 128));

} // namespace VideoCommon