mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
FINALLY IOS GRAPHICS
This commit is contained in:
parent
88e986ca53
commit
1bd00a87f9
2 changed files with 1 additions and 9 deletions
|
@ -126,10 +126,6 @@ void RendererMTL::display() {
|
||||||
// Inform the vertex buffer cache that the frame ended
|
// Inform the vertex buffer cache that the frame ended
|
||||||
vertexBufferCache.endFrame();
|
vertexBufferCache.endFrame();
|
||||||
drawable->release();
|
drawable->release();
|
||||||
|
|
||||||
#ifdef PANDA3DS_IOS
|
|
||||||
// metalLayer->autorelease();
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RendererMTL::initGraphicsContext(SDL_Window* window) {
|
void RendererMTL::initGraphicsContext(SDL_Window* window) {
|
||||||
|
|
|
@ -25,20 +25,16 @@ IOS_EXPORT void iosCreateEmulator() {
|
||||||
// auto path = emulator->getAppDataRoot() / "Kirb Demo.3ds";
|
// auto path = emulator->getAppDataRoot() / "Kirb Demo.3ds";
|
||||||
// auto path = emulator->getAppDataRoot() / "Kirb Demo.3ds";
|
// auto path = emulator->getAppDataRoot() / "Kirb Demo.3ds";
|
||||||
|
|
||||||
auto path = emulator->getAppDataRoot() / "SimplerTri.elf";
|
auto path = emulator->getAppDataRoot() / "toon_shading.elf";
|
||||||
emulator->loadROM(path);
|
emulator->loadROM(path);
|
||||||
printf("Created emulator\n");
|
printf("Created emulator\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
IOS_EXPORT void iosRunFrame(CAMetalLayer* layer) {
|
IOS_EXPORT void iosRunFrame(CAMetalLayer* layer) {
|
||||||
printf("Running a frame\n");
|
printf("Running a frame\n");
|
||||||
// void* layerBridged = (void*)CFBridgingRetain(layer);
|
|
||||||
void* layerBridged = (__bridge void*)layer;
|
void* layerBridged = (__bridge void*)layer;
|
||||||
|
|
||||||
emulator->getRenderer()->setMTKLayer(layerBridged);
|
emulator->getRenderer()->setMTKLayer(layerBridged);
|
||||||
emulator->runFrame();
|
emulator->runFrame();
|
||||||
// CFRelease(layerBridged);
|
|
||||||
|
|
||||||
// CFBridgingAutorelease(layerBridged);
|
|
||||||
printf("Ran a frame\n");
|
printf("Ran a frame\n");
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue