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
(6 intermediate revisions by 3 users not shown)
Line 14: Line 14:
  
 
===[http://runtimelegend.com/rep/fullscreenizer/index Fullscreenizer]===
 
===[http://runtimelegend.com/rep/fullscreenizer/index Fullscreenizer]===
 +
{{ii}} Small open source program
 
{{++}} Lightweight easy to use utility, useful for TVs.
 
{{++}} Lightweight easy to use utility, useful for TVs.
 +
{{++}} Can apply stay-on-top flag to avoid taskbar flickering
  
 
===[http://www.nexusmods.com/oblivion/mods/39550/? GameCompanion]===
 
===[http://www.nexusmods.com/oblivion/mods/39550/? GameCompanion]===
Line 31: Line 33:
 
}}
 
}}
  
===[http://steamcommunity.com/groups/WindowedBorderlessGaming Windowed Borderless Gaming]===
+
===[http://westechsolutions.net/sites/WindowedBorderlessGaming/ Windowed Borderless Gaming]===
 
{{++}} Customizable position axis and resolution size.
 
{{++}} Customizable position axis and resolution size.
 
{{--}} Slightly inconsistent functionality.
 
{{--}} Slightly inconsistent functionality.
Line 48: Line 50:
  
 
==AutoHotkey==
 
==AutoHotkey==
{{ii}} Either [[AutoHotkey]] [http://www.autohotkey.com/download/ L or Basic] are required for the following scripts.
+
{{ii}} The following scripts require [http://www.autohotkey.com AutoHotkey].
 
{{--}} Games utilizing [[PunkBuster]] as an anti-cheat measure may mistakenly treat AutoHotkey as a cheat.
 
{{--}} Games utilizing [[PunkBuster]] as an anti-cheat measure may mistakenly treat AutoHotkey as a cheat.
  
 
===Saving and running a script===
 
===Saving and running a script===
 
{{Fixbox|1=
 
{{Fixbox|1=
{{Fixbox/fix|Instructions}}
+
{{Fixbox/fix|Make and run script}}
See [[AutoHotkey#Saving and running a script|AutoHotkey]].}}
+
# In Windows Explorer, File -> New -> AutoHotkey Script
 +
# Open the newly created file in a text editing program
 +
# Append the code to the end of the file
 +
# Save the file and run it.
 +
}}
  
 
===Scripts compilation===
 
===Scripts compilation===
Line 62: Line 68:
 
===Borderless scripts===
 
===Borderless scripts===
 
====Fullscreen script====
 
====Fullscreen script====
{{ii}} This script will full screen the currently active window onto your primary monitor with the F12 key
+
{{ii}} This script will full screen the currently active window onto your primary monitor with {{key|F12}}.
 
{{Fixbox|1=
 
{{Fixbox|1=
 
{{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>
 
}}
 
}}
  
 
====Fullscreen toggle script====
 
====Fullscreen toggle script====
{{ii}} This script will toggle between fullscreen and windowed modes when pressing F12 as well as hiding the taskbar on the fullscreen mode.
+
{{ii}} This script will toggle between fullscreen and windowed modes when pressing {{key|F12}} as well as hiding the taskbar on the fullscreen mode.
 
{{Fixbox|1=
 
{{Fixbox|1=
 
{{Fixbox/fix|Fullscreen script}}
 
{{Fixbox/fix|Fullscreen script}}
Line 125: Line 131:
 
{{ii}} Most Linux windows managers allow fullscreen applications to natively run under a borderless mode by default.
 
{{ii}} 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:
+
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 {{key|Ctrl|Alt|F7}} and {{key|Ctrl|Alt|F8}} and it increases performance and stability. To do this, edit the launch options for your game on Steam as follows:
  
 
{{Fixbox|1=
 
{{Fixbox|1=

Revision as of 10:12, 15 November 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

Small open source program
Lightweight easy to use utility, useful for TVs.
Can apply stay-on-top flag to avoid taskbar flickering

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

The following scripts require AutoHotkey.
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 F12.
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 and Ctrl+Alt+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