mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +00:00
- added vid_cropaspect. This cvar turns vid_aspect into a letterboxing function that will crop the unused sides of the screen away, instead of stretching it. Requires one of the non-legacy OpenGL framebuffers to work.
This commit is contained in:
parent
44373b414f
commit
69abf095c9
7 changed files with 26 additions and 9 deletions
|
@ -182,8 +182,10 @@ void OpenGLFrameBuffer::Update()
|
||||||
Unlock();
|
Unlock();
|
||||||
CheckBench();
|
CheckBench();
|
||||||
|
|
||||||
int clientWidth = ViewportScaledWidth(IsFullscreen() ? VideoWidth : GetClientWidth());
|
int initialWidth = IsFullscreen() ? VideoWidth : GetClientWidth();
|
||||||
int clientHeight = ViewportScaledHeight(IsFullscreen() ? VideoHeight : GetClientHeight());
|
int initialHeight = IsFullscreen() ? VideoHeight : GetClientHeight();
|
||||||
|
int clientWidth = ViewportScaledWidth(initialWidth, initialHeight);
|
||||||
|
int clientHeight = ViewportScaledHeight(initialWidth, initialHeight);
|
||||||
if (clientWidth > 0 && clientHeight > 0 && (Width != clientWidth || Height != clientHeight))
|
if (clientWidth > 0 && clientHeight > 0 && (Width != clientWidth || Height != clientHeight))
|
||||||
{
|
{
|
||||||
// Do not call Resize here because it's only for software canvases
|
// Do not call Resize here because it's only for software canvases
|
||||||
|
|
|
@ -1304,8 +1304,8 @@ void OpenGLSWFrameBuffer::Flip()
|
||||||
|
|
||||||
if (!IsFullscreen())
|
if (!IsFullscreen())
|
||||||
{
|
{
|
||||||
int clientWidth = ViewportScaledWidth(GetClientWidth());
|
int clientWidth = ViewportScaledWidth(GetClientWidth(), GetClientHeight());
|
||||||
int clientHeight = ViewportScaledHeight(GetClientHeight());
|
int clientHeight = ViewportScaledHeight(GetClientWidth(), GetClientHeight());
|
||||||
if (clientWidth > 0 && clientHeight > 0 && (Width != clientWidth || Height != clientHeight))
|
if (clientWidth > 0 && clientHeight > 0 && (Width != clientWidth || Height != clientHeight))
|
||||||
{
|
{
|
||||||
Resize(clientWidth, clientHeight);
|
Resize(clientWidth, clientHeight);
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "c_dispatch.h"
|
#include "c_dispatch.h"
|
||||||
#include "c_cvars.h"
|
#include "c_cvars.h"
|
||||||
|
#include "v_video.h"
|
||||||
|
|
||||||
#define NUMSCALEMODES 5
|
#define NUMSCALEMODES 5
|
||||||
|
|
||||||
|
@ -64,6 +65,8 @@ CUSTOM_CVAR(Int, vid_scalemode, 0, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
|
||||||
self = 0;
|
self = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CVAR(Bool, vid_cropaspect, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
|
||||||
|
|
||||||
bool ViewportLinearScale()
|
bool ViewportLinearScale()
|
||||||
{
|
{
|
||||||
if (isOutOfBounds(vid_scalemode))
|
if (isOutOfBounds(vid_scalemode))
|
||||||
|
@ -72,17 +75,21 @@ bool ViewportLinearScale()
|
||||||
return (vid_scalefactor > 1.0) ? true : vScaleTable[vid_scalemode].isLinear;
|
return (vid_scalefactor > 1.0) ? true : vScaleTable[vid_scalemode].isLinear;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ViewportScaledWidth(int width)
|
int ViewportScaledWidth(int width, int height)
|
||||||
{
|
{
|
||||||
if (isOutOfBounds(vid_scalemode))
|
if (isOutOfBounds(vid_scalemode))
|
||||||
vid_scalemode = 0;
|
vid_scalemode = 0;
|
||||||
|
if (vid_cropaspect && height > 0)
|
||||||
|
width = (width/height > ActiveRatio(width, height)) ? height * ActiveRatio(width, height) : width;
|
||||||
return vScaleTable[vid_scalemode].GetScaledWidth((int)((float)width * vid_scalefactor));
|
return vScaleTable[vid_scalemode].GetScaledWidth((int)((float)width * vid_scalefactor));
|
||||||
}
|
}
|
||||||
|
|
||||||
int ViewportScaledHeight(int height)
|
int ViewportScaledHeight(int width, int height)
|
||||||
{
|
{
|
||||||
if (isOutOfBounds(vid_scalemode))
|
if (isOutOfBounds(vid_scalemode))
|
||||||
vid_scalemode = 0;
|
vid_scalemode = 0;
|
||||||
|
if (vid_cropaspect && height > 0)
|
||||||
|
height = (width/height < ActiveRatio(width, height)) ? width / ActiveRatio(width, height) : height;
|
||||||
return vScaleTable[vid_scalemode].GetScaledHeight((int)((float)height * vid_scalefactor));
|
return vScaleTable[vid_scalemode].GetScaledHeight((int)((float)height * vid_scalefactor));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#define __VIDEOSCALE_H__
|
#define __VIDEOSCALE_H__
|
||||||
EXTERN_CVAR (Int, vid_scalemode)
|
EXTERN_CVAR (Int, vid_scalemode)
|
||||||
bool ViewportLinearScale();
|
bool ViewportLinearScale();
|
||||||
int ViewportScaledWidth(int width);
|
int ViewportScaledWidth(int width, int height);
|
||||||
int ViewportScaledHeight(int height);
|
int ViewportScaledHeight(int width, int height);
|
||||||
bool ViewportIsScaled43();
|
bool ViewportIsScaled43();
|
||||||
#endif //__VIDEOSCALE_H__
|
#endif //__VIDEOSCALE_H__
|
|
@ -783,7 +783,7 @@ void DSimpleCanvas::Unlock ()
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
||||||
DFrameBuffer::DFrameBuffer (int width, int height, bool bgra)
|
DFrameBuffer::DFrameBuffer (int width, int height, bool bgra)
|
||||||
: DSimpleCanvas (ViewportScaledWidth(width), ViewportScaledHeight(height), bgra)
|
: DSimpleCanvas (ViewportScaledWidth(width, height), ViewportScaledHeight(width, height), bgra)
|
||||||
{
|
{
|
||||||
LastMS = LastSec = FrameCount = LastCount = LastTic = 0;
|
LastMS = LastSec = FrameCount = LastCount = LastTic = 0;
|
||||||
Accel2D = false;
|
Accel2D = false;
|
||||||
|
|
|
@ -2191,6 +2191,7 @@ VIDMNU_FULLSCREEN = "Fullscreen";
|
||||||
VIDMNU_HIDPI = "Retina/HiDPI support";
|
VIDMNU_HIDPI = "Retina/HiDPI support";
|
||||||
VIDMNU_ASPECTRATIO = "Aspect ratio";
|
VIDMNU_ASPECTRATIO = "Aspect ratio";
|
||||||
VIDMNU_FORCEASPECT = "Force aspect ratio";
|
VIDMNU_FORCEASPECT = "Force aspect ratio";
|
||||||
|
VIDMNU_CROPASPECT = "Forced ratio style";
|
||||||
VIDMNU_5X4ASPECTRATIO = "Enable 5:4 aspect ratio";
|
VIDMNU_5X4ASPECTRATIO = "Enable 5:4 aspect ratio";
|
||||||
VIDMNU_SCALEMODE = "Resolution scale";
|
VIDMNU_SCALEMODE = "Resolution scale";
|
||||||
VIDMNU_SCALEFACTOR = "Scale Factor";
|
VIDMNU_SCALEFACTOR = "Scale Factor";
|
||||||
|
@ -2381,6 +2382,7 @@ OPTVAL_VTAZDOOM = "Auto (ZDoom Preferred)";
|
||||||
OPTVAL_VTAVANILLA = "Auto (Vanilla Preferred)";
|
OPTVAL_VTAVANILLA = "Auto (Vanilla Preferred)";
|
||||||
OPTVAL_SCALENEAREST = "Scaled (Nearest)";
|
OPTVAL_SCALENEAREST = "Scaled (Nearest)";
|
||||||
OPTVAL_SCALELINEAR = "Scaled (Linear)";
|
OPTVAL_SCALELINEAR = "Scaled (Linear)";
|
||||||
|
OPTVAL_LETTERBOX = "Letterbox";
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
C_BRICK = "\cabrick";
|
C_BRICK = "\cabrick";
|
||||||
|
|
|
@ -1868,6 +1868,11 @@ OptionValue ScaleModes
|
||||||
3, "640x400"
|
3, "640x400"
|
||||||
4, "1280x800"
|
4, "1280x800"
|
||||||
}
|
}
|
||||||
|
OptionValue CropAspect
|
||||||
|
{
|
||||||
|
0, "$OPTVAL_STRETCH"
|
||||||
|
1, "$OPTVAL_LETTERBOX"
|
||||||
|
}
|
||||||
|
|
||||||
OptionMenu VideoModeMenu protected
|
OptionMenu VideoModeMenu protected
|
||||||
{
|
{
|
||||||
|
@ -1880,6 +1885,7 @@ OptionMenu VideoModeMenu protected
|
||||||
}
|
}
|
||||||
Option "$VIDMNU_ASPECTRATIO", "menu_screenratios", "Ratios"
|
Option "$VIDMNU_ASPECTRATIO", "menu_screenratios", "Ratios"
|
||||||
Option "$VIDMNU_FORCEASPECT", "vid_aspect", "ForceRatios"
|
Option "$VIDMNU_FORCEASPECT", "vid_aspect", "ForceRatios"
|
||||||
|
Option "$VIDMNU_CROPASPECT", "vid_cropaspect", "CropAspect"
|
||||||
Option "$VIDMNU_5X4ASPECTRATIO", "vid_tft", "YesNo"
|
Option "$VIDMNU_5X4ASPECTRATIO", "vid_tft", "YesNo"
|
||||||
Option "$VIDMNU_SCALEMODE", "vid_scalemode", "ScaleModes"
|
Option "$VIDMNU_SCALEMODE", "vid_scalemode", "ScaleModes"
|
||||||
Slider "$VIDMNU_SCALEFACTOR", "vid_scalefactor", 0.25, 2.0, 0.25, 2
|
Slider "$VIDMNU_SCALEFACTOR", "vid_scalefactor", 0.25, 2.0, 0.25, 2
|
||||||
|
|
Loading…
Reference in a new issue