Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.

Difference between revisions of "Glossary:Borderless fullscreen windowed"

From PCGamingWiki, the wiki about fixing PC games
(7 intermediate revisions by 4 users not shown)
Line 9: Line 9:
  
 
==Windows==
 
==Windows==
===[https://github.com/Codeusa/Borderless-Gaming Borderless Gaming]===
+
===[https://github.com/Codeusa/Borderless-Gaming/releases Borderless Gaming]===
 
{{ii}} Open source and simple to use application.
 
{{ii}} Open source and simple to use application.
 
{{++}} Dynamic, adapts easily when switching to a different resolution on another monitor. A manual toggle is also available.
 
{{++}} Dynamic, adapts easily when switching to a different resolution on another monitor. A manual toggle is also available.
Line 31: Line 31:
 
}}
 
}}
  
===[https://steamcommunity.com/linkfilter/?url=http://westechsolutions.net/sites/downloads/WindowedBorderlessGaming_2.0.0.0.zip Windowed Borderless Gaming]===
+
===[http://steamcommunity.com/groups/WindowedBorderlessGaming Windowed Borderless Gaming]===
 
{{++}} Customizable position axis and resolution size.
 
{{++}} Customizable position axis and resolution size.
 
{{--}} Slightly inconsistent functionality.
 
{{--}} Slightly inconsistent functionality.
Line 37: Line 37:
 
{{Fixbox|1=
 
{{Fixbox|1=
 
{{Fixbox/fix|Instructions}}
 
{{Fixbox/fix|Instructions}}
# Run the desired game in a windowed mode, the right click on the '''Windowed Borderless Gaming''' tray icon.
+
# Run the desired game in a windowed mode, {{key|Right Click}} on the '''Windowed Borderless Gaming''' tray icon.
 
# Click on '''Add window''', then {{key|Alt|Tab}} back to the game and push {{key|F3}}.
 
# Click on '''Add window''', then {{key|Alt|Tab}} back to the game and push {{key|F3}}.
  
 
'''Notes'''
 
'''Notes'''
 
{{ii}} Pushing F3 alone is not going to set the game into a borderless mode.
 
{{ii}} Pushing F3 alone is not going to set the game into a borderless mode.
{{ii}} New configurations are stored in <code>config.ini</code>
 
 
}}
 
}}
  
Line 67: Line 66:
 
{{Fixbox/fix|Fullscreen script}}
 
{{Fixbox/fix|Fullscreen script}}
 
<pre>
 
<pre>
F12::
+
F12::
WinGet, WindowID, ID, A
+
WinGet, WindowID, ID, A
WinSet, Style, -0xC40000, ahk_id %WindowID%
+
WinSet, Style, -0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
+
WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
return
+
return
 
</pre>
 
</pre>
 
}}
 
}}
Line 80: Line 79:
 
{{Fixbox/fix|Fullscreen script}}
 
{{Fixbox/fix|Fullscreen script}}
 
<pre>
 
<pre>
F12::
+
F12::
WinGet, TempWindowID, ID, A
+
WinGet, TempWindowID, ID, A
If (WindowID != TempWindowID)
+
If (WindowID != TempWindowID)
{
+
{
  WindowID:=TempWindowID
+
  WindowID:=TempWindowID
  WindowState:=0
+
  WindowState:=0
}
+
}
If (WindowState != 1)
+
If (WindowState != 1)
{
+
{
  WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
+
  WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
  WinSet, Style, ^0xC40000, ahk_id %WindowID%
+
  WinSet, Style, ^0xC40000, ahk_id %WindowID%
  WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
+
  WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
  ;Hide Windows Task Bar and Start Button. (Remove the following two lines if you don't want that behaviour)
+
  ;Hide Windows Task Bar and Start Button. (Remove the following two lines if you don't want that behaviour)
  WinHide ahk_class Shell_TrayWnd
+
  WinHide ahk_class Shell_TrayWnd
  WinHide Start ahk_class Button
+
  WinHide Start ahk_class Button
}
+
}
Else
+
Else
{
+
{
  WinSet, Style, ^0xC40000, ahk_id %WindowID%
+
  WinSet, Style, ^0xC40000, ahk_id %WindowID%
  WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
+
  WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
  ;Show the task bar again
+
  ;Show the task bar again
  WinShow ahk_class Shell_TrayWnd
+
  WinShow ahk_class Shell_TrayWnd
  WinShow Start ahk_class Button
+
  WinShow Start ahk_class Button
}
+
}
WindowState:=!WindowState
+
WindowState:=!WindowState
return
+
return
 
</pre>
 
</pre>
 
}}
 
}}

Revision as of 19:12, 8 August 2014

Key points

Fast, seamless task switching with no risk of crashes or freezes with no performance costs.
Eliminates screen tearing.
AMD/ATI cards do not support Crossfire in this mode.
Most games will have problems with edge scrolling on multi-monitor setups.
A forced Windowed mode will need to be set first for games which do not natively provide a borderless mode.

Windows

Borderless Gaming

Open source and simple to use application.
Dynamic, adapts easily when switching to a different resolution on another monitor. A manual toggle is also available.

Fullscreenizer

Lightweight easy to use utility, useful for TVs.

GameCompanion

Full of customizable features.

ShiftWindow

Manually completely override the size of a game's border sending it off screen.
Slightly overly complicated, not compatible with certain games.
Instructions

Windowed Borderless Gaming

Customizable position axis and resolution size.
Slightly inconsistent functionality.
Instructions

Unity

Games built on the Unity engine can be run in a borderless window by adding the launch argument -popupwindow to the main executable and checking the 'windowed' option in its launcher.

AutoHotkey

Either AutoHotkey L or Basic are required for the following scripts.
Games utilizing PunkBuster as an anti-cheat measure may mistakenly treat AutoHotkey as a cheat.

Saving and running a script

Instructions

Scripts compilation

Borderless scripts

Fullscreen script

This script will full screen the currently active window onto your primary monitor with the F12 key
Instructions

Fullscreen toggle script

This script will toggle between fullscreen and windowed modes when pressing F12 as well as hiding the taskbar on the fullscreen mode.
Instructions

Multiple monitors script

This is a snippet from the Fullscreen toggle script.
Instructions

Linux

Most Linux windows managers allow fullscreen applications to natively run under a borderless mode by default.

Another tip that exclusively works on Linux is running your game in a separate X server. This allows you to switch between your game and your desktop using CTRL+Alt+F7/F8 and it increases performance and stability. To do this, edit the launch options for your game on Steam as follows:

Instructions

Improved tiling windows manager

Instructions