kick
|
00001 // 00002 // context.cpp 00003 // KickCPP 00004 // 00005 // Created by Morten Nobel-Jørgensen on 27/12/13. 00006 // Copyright (c) 2013 Morten Nobel-Joergensen. All rights reserved. 00007 // 00008 00009 #include "kick/context/context.h" 00010 #include "kick/core/mouse_input.h" 00011 00012 using namespace std; 00013 using namespace glm; 00014 00015 namespace kick { 00016 00017 Context::Context() 00018 {} 00019 00020 glm::ivec2 Context::getContextSurfaceDim(){ 00021 return contextSurfaceDim; 00022 } 00023 00024 string Context::getGLSLPrefix(){ 00025 return "#version 150"; 00026 } 00027 00028 std::string Context::getBasePath(){ 00029 return "./"; 00030 } 00031 }