-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvulkan.cc.bak
41 lines (32 loc) · 949 Bytes
/
vulkan.cc.bak
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
/******************************************************************************
* File Name: vulkan.cc
* Created by: Stephen M. Reaves
* Date Last Modified:
*
* Summary:
*
*/
#include <cstdlib>
#include <iostream>
#include <string>
#include "vulkan.h"
using namespace std;
Vulkan::Vulkan() {}
Vulkan::~Vulkan() {}
bool Vulkan::Init() {
isInit_ = false;
return isInit_;
}
void Vulkan::Die() {}
/*******************************************************************************
* Function 'MakeWindowChar'
* Returns: char representing user input
* Summary: This function rewrites the vulkan window
*/
char Vulkan::MakeWindowChar(string message) { return 'a'; }
/*******************************************************************************
* Function 'MakeWindow'
* Returns: string representing user input
* Summary: This function rewrites the vulkan window
*/
string Vulkan::MakeWindow(string message) { return message; }