mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
12 lines
288 B
Text
12 lines
288 B
Text
#include "renderer_mtl/objc_helper.hpp"
|
|
|
|
// TODO: change the include
|
|
#import <Metal/Metal.h>
|
|
|
|
namespace Metal {
|
|
|
|
dispatch_data_t createDispatchData(const void* data, size_t size) {
|
|
return dispatch_data_create(data, size, dispatch_get_global_queue(0, 0), ^{});
|
|
}
|
|
|
|
} // namespace Metal
|