mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
12 lines
No EOL
331 B
C++
12 lines
No EOL
331 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "mtl_common.hpp"
|
|
|
|
namespace Metal {
|
|
dispatch_data_t createDispatchData(const void* data, size_t size);
|
|
} // namespace Metal
|
|
|
|
// Cast from std::string to NS::String*
|
|
inline NS::String* toNSString(const std::string& str) { return NS::String::string(str.c_str(), NS::ASCIIStringEncoding); } |