Vulkan Schnee 0.0.1
High-performance rendering engine
Loading...
Searching...
No Matches
FunctionNotImplemented.h
Go to the documentation of this file.
1#pragma once
2
3#define FUNCTION_NOT_IMPLEMENTED PLOGW << __func__ << " not implemented at: " << __FILE__ << ":" << __LINE__;
4
5#define FUNCTION_NOT_IMPLEMENTED_F PLOGF << __func__ << " not implemented at: " << __FILE__ << ":" << __LINE__;
6
7#define FUNCTION_NOT_IMPLEMENTED_RETURN PLOGW << __func__ << " not implemented at: " << __FILE__ << ":" << __LINE__; return {};
8
9#define FUNCTION_NOT_IMPLEMENTED_F_RETURN PLOGF << __func__ << " not implemented at: " << __FILE__ << ":" << __LINE__; return {};
10
11#define FUNCTION_DEPRECATED PLOGW << __func__ << " not implemented at: " << __FILE__ << ":" << __LINE__;
12
13#define FUNCTION_DEPRECATED_RETURN PLOGW << __func__ << " not implemented at: " << __FILE__ << ":" << __LINE__; return {};