forked from GPUOpen-Tools/gpu_performance_api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDX11GPACommandList.cpp
48 lines (38 loc) · 1.16 KB
/
DX11GPACommandList.cpp
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
//==============================================================================
// Copyright (c) 2017-2018 Advanced Micro Devices, Inc. All rights reserved.
/// \author AMD Developer Tools Team
/// \file
/// \brief DX11 GPA Command List Implementation
//==============================================================================
#include "DX11GPACommandList.h"
DX11GPACommandList::DX11GPACommandList(IGPASession* pGpaSession, GPAPass* pGpaPass, CommandListId commandListId):
GPACommandList(pGpaSession, pGpaPass, commandListId)
{
}
GPA_API_Type DX11GPACommandList::GetAPIType() const
{
return GPA_API_DIRECTX_11;
}
bool DX11GPACommandList::BeginCommandListRequest()
{
GPA_STUB_FUNCTION;
return true;
}
bool DX11GPACommandList::EndCommandListRequest()
{
GPA_STUB_FUNCTION;
return true;
}
bool DX11GPACommandList::BeginSampleRequest(ClientSampleId clientSampleId,
GPASample* pGpaSample)
{
GPA_STUB_FUNCTION;
UNREFERENCED_PARAMETER(clientSampleId);
UNREFERENCED_PARAMETER(pGpaSample);
return true;
}
bool DX11GPACommandList::CloseLastSampleRequest()
{
GPA_STUB_FUNCTION;
return true;
}