summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_jit_fake.cpp
blob: e1e79b7330ded9cf122d941e3978ad856087f7eb (plain) (blame)
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
83
84
85
86
87
88
89
90
91
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/fake_emitter.h"

#include "video_core/shader/shader.h"
#include "video_core/shader/shader_jit.h"

namespace Pica {

namespace Shader {

using namespace FakeGen;

void Jit::Comp_ADD(Instruction instr) {
}

void Jit::Comp_DP3(Instruction instr) {
}

void Jit::Comp_DP4(Instruction instr) {
}

void Jit::Comp_MUL(Instruction instr) {
}

void Jit::Comp_FLR(Instruction instr) {
}

void Jit::Comp_MAX(Instruction instr) {
}

void Jit::Comp_MIN(Instruction instr) {
}

void Jit::Comp_MOVA(Instruction instr) {
}

void Jit::Comp_MOV(Instruction instr) {
}

void Jit::Comp_SLTI(Instruction instr) {
}

void Jit::Comp_RCP(Instruction instr) {
}

void Jit::Comp_RSQ(Instruction instr) {
}

void Jit::Comp_NOP(Instruction instr) {
}

void Jit::Comp_END(Instruction instr) {
}

void Jit::Comp_CALL(Instruction instr) {
}

void Jit::Comp_CALLC(Instruction instr) {
}

void Jit::Comp_CALLU(Instruction instr) {
}

void Jit::Comp_CMP(Instruction instr) {
}

void Jit::Comp_MAD(Instruction instr) {
}

void Jit::Comp_IF(Instruction instr) {
}

void Jit::Comp_LOOP(Instruction instr) {
}

void Jit::Comp_JMP(Instruction instr) {
}

void Jit::Comp_NextInstr(unsigned* offset) {
}

CompiledShader Jit::Compile() {
    return nullptr;
}

} // namespace Shader

} // namespace Pica