blob: 0da8f6292e2027450e7776b5154eb5a514eeda0f (
plain)
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
|
#include "slang-blob.h"
namespace Slang {
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! BlobBase !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
ISlangUnknown* BlobBase::getInterface(const Guid& guid)
{
if (guid == ISlangUnknown::getTypeGuid() ||
guid == ISlangBlob::getTypeGuid())
{
return static_cast<ISlangBlob*>(this);
}
if (guid == ICastable::getTypeGuid())
{
return static_cast<ICastable*>(this);
}
return nullptr;
}
void* BlobBase::getObject(const Guid& guid)
{
SLANG_UNUSED(guid);
return nullptr;
}
void* BlobBase::castAs(const SlangUUID& guid)
{
if (auto intf = getInterface(guid))
{
return intf;
}
return getObject(guid);
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! StaticBlob !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
SlangResult StaticBlob::queryInterface(SlangUUID const& guid, void** outObject)
{
if (auto intf = getInterface(guid))
{
*outObject = intf;
return SLANG_OK;
}
return SLANG_E_NO_INTERFACE;
}
void* StaticBlob::castAs(const SlangUUID& guid)
{
if (auto intf = getInterface(guid))
{
return intf;
}
return getObject(guid);
}
ISlangUnknown* StaticBlob::getInterface(const Guid& guid)
{
if (guid == ISlangUnknown::getTypeGuid() ||
guid == ISlangBlob::getTypeGuid())
{
return static_cast<ISlangBlob*>(this);
}
if (guid == ICastable::getTypeGuid())
{
return static_cast<ICastable*>(this);
}
return nullptr;
}
void* StaticBlob::getObject(const Guid& guid)
{
SLANG_UNUSED(guid);
return nullptr;
}
} // namespace Slang
|