Dolphin, the GameCube and Wii emulator - Forums
Is it possible to grab screenshots directly from IR? - Printable Version

+- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org)
+-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support)
+--- Forum: Support (https://forums.dolphin-emu.org/Forum-support)
+--- Thread: Is it possible to grab screenshots directly from IR? (/Thread-is-it-possible-to-grab-screenshots-directly-from-ir)



Is it possible to grab screenshots directly from IR? - ron975 - 01-27-2014

I'm trying to get extremely high-resolution screens of the title screens of Xenoblade and The Last Story, I'm using them as wallpapers for my iPad. I managed to get 4k screens with some downscaling, but it's still kinda blurry. I don't think I'll be able to push my monitor to do 6k or 8k, besides, my HDMI cable can't even support it. Is it possible to grab screenshots before they're displayed onto the window? Some 12xIR screens would be nice, and I don't think I'll be able to display 8k downscaled.


RE: Is it possible to grab screenshots directly from IR? - pauldacheez - 01-27-2014

I don't believe this has been implemented. If it is, it's via the framedumping option, which I've never tried using.


RE: Is it possible to grab screenshots directly from IR? - RachelB - 01-27-2014

You could just hack dolphin to not limit the window size to your monitor's resolution. That's how i made this.

(01-27-2014, 03:41 PM)pauldacheez Wrote: I don't believe this has been implemented. If it is, it's via the framedumping option, which I've never tried using.

No, that is done after resizing.


RE: Is it possible to grab screenshots directly from IR? - ron975 - 01-27-2014

(01-27-2014, 03:50 PM)RachelB Wrote: You could just hack dolphin to not limit the window size to your monitor's resolution. That's how i made this.


Wow, that's nice. Any tips on how to do it though? I'm not very familiar with Dolphin's codebase and C(++) syntax in general :p


RE: Is it possible to grab screenshots directly from IR? - RachelB - 01-27-2014

Yeah, here

Code:
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp
index 79ab0c7..df9b07d 100644
--- a/Source/Core/DolphinWX/FrameTools.cpp
+++ b/Source/Core/DolphinWX/FrameTools.cpp
@@ -964,6 +964,7 @@ void CFrame::StartGame(const std::string& filename)
        m_RenderParent->Bind(wxEVT_SIZE, &CFrame::OnRenderParentResize, this);
    }

+    m_RenderFrame->SetMaxSize(wxSize(99999999, 99999999));
    wxEndBusyCursor();
}



RE: Is it possible to grab screenshots directly from IR? - ron975 - 01-28-2014

(01-27-2014, 04:33 PM)RachelB Wrote: Yeah, here

Code:
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp
index 79ab0c7..df9b07d 100644
--- a/Source/Core/DolphinWX/FrameTools.cpp
+++ b/Source/Core/DolphinWX/FrameTools.cpp
@@ -964,6 +964,7 @@ void CFrame::StartGame(const std::string& filename)
        m_RenderParent->Bind(wxEVT_SIZE, &CFrame::OnRenderParentResize, this);
    }

+    m_RenderFrame->SetMaxSize(wxSize(99999999, 99999999));
    wxEndBusyCursor();
}

Thanks!

Setting EFBScale in the ini didn't work though, so with some google-fu I managed to hack open the 4xIR setting and change it to 9xIR. My graphics card wouldn't go any further, so the largest screen I was able to manage I was 5760x3240. Still better than the 4k image though. Well worth the half-hour it took to figure out how to build it. Smile


RE: Is it possible to grab screenshots directly from IR? - RachelB - 01-28-2014

Ohh, that is great.