Recent content by myowfriend

  1. M

    Emulation [RELEASE] Cemu - Wii U emulator

    That level looks fine for me.
  2. M

    Emulation [RELEASE] Cemu - Wii U emulator

    What level is that? I'm pretty sure I was just playing it and it looked fine.
  3. M

    Emulation [RELEASE] Cemu - Wii U emulator

    I'm not completely sure that it is. I think he just tried as an assumption especially when it's usually called double precision not dual. Half-precision is a 16-bit operation, single precision is 32-bit, and double is 64-bit.
  4. M

    Emulation [RELEASE] Cemu - Wii U emulator

    No it isn't. It would cause the compiler to try to round dual-precision (64-bit) instructions.
  5. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Turn on logging. Then boot Twilight Princess. Check the log in your CEMU folder and see if the titleId that comes up is listed in the titled section of the graphics pack. If it's not, just add it and it should work.
  6. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Is there any public documentation for graphics packs? I don't even know what each of the texture format options correlate to.
  7. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Excellent point. I did not think of that. Though obviously, actually changing the aspect ratio would involve changing attributes of the in-game camera more so than the resolution. The resolution could be whatever at that point and the it'll still fit be resized to that aspect-ratio so being...
  8. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Right. Here's an example of what a G-buffer looks like as an example. The geometry gets rendered and stored as different buffers which are stored as textures. Shaders then use the information in these buffers to do things like lighting, fog, normal-mapping, etc and make the finalized image...
  9. M

    Emulation [RELEASE] Cemu - Wii U emulator

    I'm aware. But what your describing would just as effective as that. That's not what the graphics packs are doing. The graphics packs are increasing the rendered resolution of the image. It's not rendering at 720p or 1080p and then being stretched or interpolated to 4k. All these texture...
  10. M

    Emulation [RELEASE] Cemu - Wii U emulator

    What you're describing sounds like cascading to me. Like I'm trying to figure out logistically what might be going on behind the scenes for something like that to happen. I would assume that any time the API creates a new render target and a graphics pack is enabled, CEMU checks the graphics...
  11. M

    Emulation [RELEASE] Cemu - Wii U emulator

    The issue with current console isn't how much memory they have. If what you're talking about was at all possible and as good as it looks in CEMU and requires no increase in internal resolution than there would be no PS4 Pro game that isn't hitting 4k because they would be able to keep internal...
  12. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Why would that happen? Look at this example from the Super Mario 3D World + Captain Toad: Treasure Tracker 4k pack. [TextureRedefine] # tv width = 1280 height = 720 formatsExcluded = 0x008,0x41A,0x034,0x035 # exclude obvious textures overwriteWidth = 3840 #3x original overwriteHeight = 2160...
  13. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Wait? Why are we going back to interlaced rendering? That's literally something people were trying to get rid of for years and now games are using it? Bu if you really want interlacing, that might be doable with a shaders but only with 60fps games. You can fake 60i/30fps with 60p but a 30p game...
  14. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Does anybody whose been working on the graphics packs a lot see many downsides to this idea? If not then maybe we can work on an alternative way to write rules that we can suggest to Exzap. It seems like the "muliplyBy" property alone would cut down on some of the work making rule files. Not...
  15. M

    Emulation [RELEASE] Cemu - Wii U emulator

    Not sure if somebody said this but wouldn't it be easier if we could just use multiples? Like instead of [TextureRedefine] width = 1280 height = 720 overwriteWidth = 3840 overwriteHeight = 2160 it could be [TextureRedefine] # zoomed in width = 1280 height = 720 multiplyBy = 3 It could...