Simple tweaks for FPS boost (2024)

  • brussell
  • Simple tweaks for FPS boost (1)Topic Author

More

9 years 2 months ago - 8 years 6 months ago#1by brussellSimple tweaks for FPS boost was created by brussell

Note: These tweaks are mainly for pre1.1 MER. With MER 1.1 you can now choose between RGBA8, RGBA16F and RGBA32F textures. However, the tweaks under point 3 can still be applied.

Just encountered two methods to gain a few FPS (this is an understatement, I gained nearly 80 FPS in one scene, doubling the framerate) with ME. Fortunately I've noticed no* differences in quality.

1. Change the texture format from RGBA32F to RGBA8
2. Change MipLevels from 7 to 1
3. see also this post for some additonal tweaks

So it should look like this:

texture texColorHDR1 { Width = BUFFER_WIDTH; Height = BUFFER_HEIGHT; MipLevels = 1; Format = RGBA8;}; //pingtexture texColorHDR2 { Width = BUFFER_WIDTH; Height = BUFFER_HEIGHT; MipLevels = 1; Format = RGBA8;}; //pongtexture texMagicDOF { Width = BUFFER_WIDTH; Height = BUFFER_HEIGHT; MipLevels = 1; Format = RGBA8;}; #if (USE_RAYMARCH_AO == 1)texture texAO { Width = BUFFER_WIDTH; Height = BUFFER_HEIGHT; MipLevels = 1; Format = RGBA8;}; texture texAO2 { Width = BUFFER_WIDTH; Height = BUFFER_HEIGHT; MipLevels = 1; Format = RGBA8;};#endiftexture2D texDepth : DEPTH;texture texBloom1 { Width = BUFFER_WIDTH; Height = BUFFER_HEIGHT; MipLevels = 1; Format = RGBA8;};texture texBloom2 { Width = BUFFER_WIDTH/2; Height = BUFFER_HEIGHT/2; MipLevels = 1;Format = RGBA8;};texture texBloom3 { Width = BUFFER_WIDTH/4; Height = BUFFER_HEIGHT/4; MipLevels = 1;Format = RGBA8;};texture texBloom4 { Width = BUFFER_WIDTH/8; Height = BUFFER_HEIGHT/8; MipLevels = 1;Format = RGBA8;};texture texBloom5 { Width = BUFFER_WIDTH/16; Height = BUFFER_HEIGHT/16; MipLevels = 1;Format = RGBA8;};

I haven't tested Magic Dof and Raymarch AO with these values. (Edit: seems to work well)

edit:
Example Comparison (look at FPS in upper right corner)

Simple tweaks for FPS boost (2)

*There may be some decrease in quality for some effects, but it's barely visible most of the time. For better dof-quality set texColorHDR2 to RGBA16 (litte fps drain). (See this post)

Last edit: 8 years 6 months ago by crosire.Reason: Fixed link

The following user(s) said Thank You: SunBroDave, Constantine PC, jas01, piterrrxd

Please Log in or Create an account to join the conversation.

  • Constantine PC
  • Simple tweaks for FPS boost (3)

More

9 years 2 months ago#2by Constantine PCReplied by Constantine PC on topic Simple tweaks for FPS boost

I just want to say this 100% worked for me too.
Master effect used to cut my framerate almost in half and now i'm seeing a 5 frame loss now which is very good.
it's only about a 6.xx percent slowdown now so it's pretty good. Maybe there are some other tweaks similar to this?

I haven't tested Raymarch AO or Magic DOF. But I don't use those for anything any ways.

Thanks.

Please Log in or Create an account to join the conversation.

  • SiriusHours
  • Simple tweaks for FPS boost (4)

More

9 years 2 months ago#3by SiriusHoursReplied by SiriusHours on topic Simple tweaks for FPS boost

words thanks for the info

Please Log in or Create an account to join the conversation.

  • SunBroDave
  • Simple tweaks for FPS boost (5)

More

9 years 2 months ago#4by SunBroDaveReplied by SunBroDave on topic Simple tweaks for FPS boost

I'm sure that people w better eyes than mine will more notice the drop in quality, but totally, this seems like a good compromise between improving a games IQ and preserving performance. Especially when playing 2014-2015 games on aging hardware

Please Log in or Create an account to join the conversation.

  • crosire
  • Simple tweaks for FPS boost (6)

More

9 years 2 months ago - 9 years 2 months ago#5by crosireReplied by crosire on topic Simple tweaks for FPS boost

Edit: Nevermind.

Last edit: 9 years 2 months ago by crosire.

Please Log in or Create an account to join the conversation.

  • vfxninjaeditor
  • Simple tweaks for FPS boost (7)

More

9 years 2 months ago#6by vfxninjaeditorReplied by vfxninjaeditor on topic Simple tweaks for FPS boost

How does it destroy ME's bloom? I personally didn't notice any change.

Please Log in or Create an account to join the conversation.

  • brussell
  • Simple tweaks for FPS boost (8)Topic Author

More

9 years 2 months ago - 9 years 2 months ago#7by brussellReplied by brussell on topic Simple tweaks for FPS boost

crosire wrote: Note that this destroys MasterEffect's bloom, most other things should work fine though Simple tweaks for FPS boost (9)

I wouldn't speak of "destroying", just minor changes. The example scene would look totally different without the bloom.

Last edit: 9 years 2 months ago by brussell.

Please Log in or Create an account to join the conversation.

  • crosire
  • Simple tweaks for FPS boost (10)

More

9 years 2 months ago - 9 years 2 months ago#8by crosireReplied by crosire on topic Simple tweaks for FPS boost

Oh, sorry, I didn't mean bloom, I meant DOF. Turning down the precision for the bloom textures does decrease quality a little bit (introduces banding issues), but as you noted, it's minor.
Those mipevels on the other hand are required for the Magic DOF algorithm to work, same is true for the chapman lensflare, so disabling them probably means those will no longer work right.

Last edit: 9 years 2 months ago by crosire.

Please Log in or Create an account to join the conversation.

  • brussell
  • Simple tweaks for FPS boost (11)Topic Author

More

9 years 2 months ago - 9 years 2 months ago#9by brussellReplied by brussell on topic Simple tweaks for FPS boost

I've tested the settings in detail with one scene (Raymarch AO and Magic Dof enabled):

Standard settings:
i.imgur.com/Tfy4xEf.jpg

All textures set to MipLevel 1
i.imgur.com/MBGWcRe.jpg

texMagicDof and texAO,texAO2 set to RGBA8
i.imgur.com/MVrO5t7.jpg

All textures set to RGBA8 (so the remaining texColorHDR1 and texColorHDR2)
i.imgur.com/iGvE2Zi.jpg

texColorHDR2 set to RGBA16
i.imgur.com/My7bj3a.jpg

Conclusion (imho):
Setting texColorHDR2 to RGBA8 changes the quality of magic dof. It looks a bit more blurry and misaligned, but it works. Set to RGBA16 it looks like the original RGBA32F, but with more fps of course.
All other settings have no impact on the image (at least for this scene).

Last edit: 9 years 2 months ago by brussell.

The following user(s) said Thank You: SunBroDave, Nekrik, jas01

Please Log in or Create an account to join the conversation.

  • calafate
  • Simple tweaks for FPS boost (12)

More

9 years 2 months ago - 9 years 2 months ago#10by calafateReplied by calafate on topic Simple tweaks for FPS boost

Thanks for the info.

With a R7 260x 2GB i couldn´t use the Master Effects on modern games due the loss of huge performance, even if all of the effects were turned off. I have made some testing with this trick and the performance improved vastly. I dont really care if DoF or AO looks sightly worse, the huge performance gain is enough for me to use it now.

Many thanks Simple tweaks for FPS boost (13)

Last edit: 9 years 2 months ago by calafate.

Please Log in or Create an account to join the conversation.

  • Nekrik
  • Simple tweaks for FPS boost (14)

More

9 years 2 months ago - 9 years 2 months ago#11by NekrikReplied by Nekrik on topic Simple tweaks for FPS boost

I concur that. Made myself some tests on "Remember Me" with texture "texColorHDR1" and "texColorHDR2" set to RGBA16 instead of RGBA32F and gained about 15 fps with absolutely no IQ loss. I don't use Magic DOF nor Raymarch AO though so didn't touch those settings. Also from my tests setting the "texColorHDR1" and "texColorHDR2" mips levels from 7 to 1 had no impact on neither FPS nor IQ, so kept them on 7!

Last edit: 9 years 2 months ago by Nekrik.

Please Log in or Create an account to join the conversation.

  • brussell
  • Simple tweaks for FPS boost (15)Topic Author

More

9 years 2 months ago#12by brussellReplied by brussell on topic Simple tweaks for FPS boost

Nekrik wrote: Also from my tests setting the "texColorHDR1" and "texColorHDR2" mips levels from 7 to 1 had no impact on neither FPS nor IQ, so kept them on 7!

I did a quick test on this again with Dawn of War (Effects used: filmic pass, reinhard linear, sharpen; the values in parentheses are with extra bloom,ao,dof):
MipLevel 7: 258 fps (47 fps)
MipLevel 1: 400 fps (53 fps)

So it definitely has an impact on the framerate. Maybe there are other reasons why it doesn't have an influence for you.

Please Log in or Create an account to join the conversation.

  • crosire
  • Simple tweaks for FPS boost (16)

More

9 years 2 months ago#13by crosireReplied by crosire on topic Simple tweaks for FPS boost

Enabling mipmapping on rendertargets forces ReShade to recalculate them after each pass, which is an expensive operation, so yes, it should really have an impact on performance.

Please Log in or Create an account to join the conversation.

  • brussell
  • Simple tweaks for FPS boost (17)Topic Author

More

9 years 2 months ago - 9 years 2 months ago#14by brussellReplied by brussell on topic Simple tweaks for FPS boost

I was to able to get even more fps out of ME (ca. 5%). Essentially we abandon those HDR samplers with the corresponding EmptyHDR passes. Afaik there is no visible quality loss.
Since I don't know if Marty would approve this, instead of uploading a tweaked Reshade.fx I simply lay out the changes I made.

Steps (for replacing i suggest the find/replace functionality of your editor):
-delete the two "texture texColorHDR* {...};" declarations
-delete the two "sampler SamplerColorHDR* {...};" declarations
-replace "texColorHDR1", "texColorHDR2" with "texColor"
-replace "SamplerColorLDR","SamplerColorHDR1","SamplerColorHDR2" with "SamplerColor"
-replace "RenderTarget = texColor;" with "" (aka Nothing)
-delete all the "EmptyHDR*{...}" passes in the techniques section
-optional (no fps gain, just tidying): delete unnecessary functions: "EmptyPassHDR*{...}"

Additionally you could merge some of the passes (I've done this with a config where I use only few effects), but the performance gain would be marginal. More tweaking would require advanced HLSL knowledge, that I don't have yet. Simple tweaks for FPS boost (18)

edit: fixed some instructions

Last edit: 9 years 2 months ago by brussell.

The following user(s) said Thank You: Wicked Sick, calafate, Quentin-Tarantino, Constantine PC, jas01

Please Log in or Create an account to join the conversation.

  • Iddqd
  • Simple tweaks for FPS boost (19)

More

9 years 2 months ago#15by IddqdReplied by Iddqd on topic Simple tweaks for FPS boost

SamplerColor not defined in last MasterEffect version Simple tweaks for FPS boost (20)
Here link with all performance tweaks: www.dropbox.com/s/0ppzxekkw9k5w9r/Master..._with_fixes.zip?dl=0

The following user(s) said Thank You: CryZENx, Quentin-Tarantino, Constantine PC

Please Log in or Create an account to join the conversation.

  • Quentin-Tarantino
  • Simple tweaks for FPS boost (21)

More

9 years 2 months ago#16by Quentin-TarantinoReplied by Quentin-Tarantino on topic Simple tweaks for FPS boost

Thanks mate it helped a lot Simple tweaks for FPS boost (22)

Please Log in or Create an account to join the conversation.

  • Alfredxx
  • Simple tweaks for FPS boost (23)

More

8 years 10 months ago#17by AlfredxxReplied by Alfredxx on topic Simple tweaks for FPS boost

Hi I rename the lines but I sea not FPS boost for me please help!!!!

Please send me your Reshade.FX.datei thanks..

Please Log in or Create an account to join the conversation.

  • brussell
  • Simple tweaks for FPS boost (24)Topic Author

More

8 years 10 months ago - 8 years 10 months ago#18by brussellReplied by brussell on topic Simple tweaks for FPS boost

Alfredxx, the tweaks are mostly obsolete now. Just use the latest MasterEffect release or the ReShade Framework.

Last edit: 8 years 10 months ago by brussell.

Please Log in or Create an account to join the conversation.

  • Marty McFly
  • Simple tweaks for FPS boost (25)

More

8 years 10 months ago - 8 years 6 months ago#19by Marty McFlyReplied by Marty McFly on topic Simple tweaks for FPS boost

The fixes of this version are obsolete, I optimized the performance as much as possible without breaking anything.
There are no place filler passes anymore, no useless mipmaps, and so on.
Also some textures cannot be downgraded in their bit depth, see why in my last post on this page:

reshade.me/forum/shader-presentation/161...ial-thread?start=534

Forcing RGBA8 on the occlusion textures results in horrible artifacts.

Last edit: 8 years 6 months ago by crosire.Reason: Fixed link

The following user(s) said Thank You: Wicked Sick, jas01

Please Log in or Create an account to join the conversation.

Simple tweaks for FPS boost (2024)

FAQs

Simple tweaks for FPS boost? ›

If you are on Xbox, start by going to your console settings. and go to general. and then click TV and Display Options. You then will have the option to select 200 hertz.

How to get more FPS in Fortnite tweaks? ›

To enable do the following:
  1. Open Fortnite.
  2. Click on the menu icon in the top left corner.
  3. In the Display options, change Rendering Mode to Performance - Lower Graphical Fidelity.
  4. Click on Apply.
  5. Restart Fortnite and enjoy!

How to increase FPS to 100? ›

Easy Fixes for Low FPS
  1. Close background processes. Use the Task Manager (shortcut: CTRL+SHIFT+ESC), then click the CPU and Memory tabs to see what's using large chunks of your CPU or RAM.
  2. Update the game. ...
  3. Update your graphics drivers. ...
  4. Search for player tweaks and mods. ...
  5. Repair your install.

How to get 200 FPS on Xbox? ›

If you are on Xbox, start by going to your console settings. and go to general. and then click TV and Display Options. You then will have the option to select 200 hertz.

How do I make my FPS look better? ›

How to optimise PC for gaming and increase FPS
  1. Update graphics card drivers. The graphics card is central to the gaming performance. ...
  2. Change video game settings. ...
  3. Enable Game Mode in Windows 10. ...
  4. Lower the resolution. ...
  5. Manage power option. ...
  6. Overclock graphics card. ...
  7. Increase RAM. ...
  8. Replace the graphics card.
Sep 25, 2022

How to increase 99% FPS? ›

  1. How to increase FPS on your computer.
  2. Find your monitor's refresh rate.
  3. Find out your current FPS.
  4. Enable Game Mode in Windows.
  5. Make sure you have the latest video driver installed.
  6. Optimize your game settings.
  7. Reduce your screen resolution.
  8. Upgrade your graphics card.
Aug 15, 2023

Is 120 FPS good? ›

Once you've played games at 120fps, it's hard to go back. Not only is everything gloriously smooth, but there's evidence to suggest that improved frame rates can improve reaction times, potentially giving you a competitive advantage in those all-important multiplayer sessions.

What is 1 low FPS? ›

Basically it means that 1% and . 1% of the frames rendered are at that frame rate. The lower the number the more stutter and frame pacing issues..

Does RAM increase FPS? ›

RAM can improve frame rates and frame pacing when playing games. Check both capacity and speed when choosing RAM. Know the difference between form factors like DIMM and SO-DIMM. Get at least 16GB of RAM to play modern games, and more if you multitask.

How to enable FPS boost? ›

Enable FPS boost in the compatibility settings for the game:
  1. In My games & apps, highlight the game desired, and then press Menu > Manage game & add-ons > Compatibility options.
  2. Enable FPS boost.

What Xbox runs 120 FPS on Fortnite? ›

Xbox Series X|S.

How many FPS can Xbox run? ›

**4K at up to 120FPS: Requires supported content and display.

Why is my FPS terrible? ›

These problems are typically due to insufficient processing power, memory, or other hardware limitations, resulting in choppy and stuttering graphics and hindering the immersive experience for players. The optimal FPS range falls within 30 to 60 FPS, as it balances smooth gameplay and visual fidelity.

What makes my FPS higher? ›

For smoother gaming experiences with higher FPS, it's important to have powerful hardware such as a fast processor and video card. Additionally, RAM and storage speed can also play a role in determining how well games run, so make sure you're using components that are suitable for the titles you intend to play.

How to boost GPU performance? ›

How to Improve GPU Performance
  1. Update the GPU Drivers to Improve Performance.
  2. Plug Your Laptop to the Wall.
  3. Toggle Hardware-accelerated GPU Scheduling.
  4. Consider Trying Upscaling Technologies to Get Better GPU Performance.
  5. Clear Your PC to Lower Thermals.
Oct 23, 2023

How do I make Fortnite run more FPS? ›

Click on the menu icon in the top right corner. Click on Settings. Click on Video. Toggle 120 FPS mode to ON.

How to get 200 FPS Fortnite? ›

So now Fortnite has 200 FPS, and here's how to do it. So if you're an Xbox, start by going to your console settings as like general. and then click TV and Display Options. Here you'll have the option to select 200 hertz, so make sure to select 200 hertz, then restart your console.

Is there a Fortnite FPS Unlocker? ›

So both showing FPS and unlocking FPS are important. To achieve them, you can use LagoFast, a practical Fortnite FPS unlocker, and Fortnite FPS calculator. Besides, it is also good at solving other Fortnite problems, such as packet loss, high ping.

References

Top Articles
Latest Posts
Article information

Author: Geoffrey Lueilwitz

Last Updated:

Views: 5913

Rating: 5 / 5 (80 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Geoffrey Lueilwitz

Birthday: 1997-03-23

Address: 74183 Thomas Course, Port Micheal, OK 55446-1529

Phone: +13408645881558

Job: Global Representative

Hobby: Sailing, Vehicle restoration, Rowing, Ghost hunting, Scrapbooking, Rugby, Board sports

Introduction: My name is Geoffrey Lueilwitz, I am a zealous, encouraging, sparkling, enchanting, graceful, faithful, nice person who loves writing and wants to share my knowledge and understanding with you.