blob: 44eb7a727be277fa1422400a6e2305ba5e21e7a4 (
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
|
// ir.cpp
#include "ir.h"
#include "../core/basic.h"
namespace Slang
{
IRType* IRBuilder::getBoolType()
{
SLANG_UNIMPLEMENTED_X("IR");
}
IRValue* IRBuilder::getBoolValue(bool value)
{
SLANG_UNIMPLEMENTED_X("IR");
}
IRValue* IRBuilder::getIntValue(IRType* type, IRIntegerValue value)
{
SLANG_UNIMPLEMENTED_X("IR");
}
IRValue* IRBuilder::getFloatValue(IRType* type, IRFloatingPointValue value)
{
SLANG_UNIMPLEMENTED_X("IR");
}
}
|