Index: Help/configuration.htm |
— | — | @@ -72,10 +72,6 @@ |
73 | 73 | Uses nearest-neighbor scaling.
|
74 | 74 | <h3>Bilinear</h3>
|
75 | 75 | Uses bilinear scaling. Reduces jagged edges, but may create visual artifacts in some applications. Does not work with 8-bit color except for the full-screen scaling modes.
|
76 | | - <h3>Custom shader</h3>
|
77 | | - (not implemented) Uses a custom GLSL pixel shader to display the image.
|
78 | | - <h3>Shader (primary only)</h3>
|
79 | | - (not implemented) Uses a custom GLSL pixel shader to display the primary buffer.
|
80 | 76 | <h2><a name="aspect" />Screen aspect ratio</h2>
|
81 | 77 | Overrides the aspect ratio for "Aspect corrected stretch" and "Scale if mode not found". Enter as x:y or as a floating point ratio, for example 4:3 or 1.333333, or select a preset from the dropdown list. Default uses a square pixel ratio.
|
82 | 78 | <h2><a name="dpiscale" />DPI scaling mode</h2>
|
Index: Help/dxgl.hhp |
— | — | @@ -2,12 +2,16 @@ |
3 | 3 | Compatibility=1.1 or later
|
4 | 4 | Compiled file=dxgl.chm
|
5 | 5 | Contents file=toc.hhc
|
| 6 | +Default Window=DXGL Help
|
6 | 7 | Default topic=introduction.htm
|
7 | 8 | Display compile progress=No
|
8 | 9 | Language=0x409 English (United States)
|
9 | 10 | Title=DXGL Help
|
10 | 11 |
|
| 12 | +[WINDOWS]
|
| 13 | +DXGL Help=,"toc.hhc",,"introduction.htm",,,,,,0x22520,,0x3006,[0,0,922,684],0x318f0000,,,,,,0
|
11 | 14 |
|
| 15 | +
|
12 | 16 | [FILES]
|
13 | 17 | introduction.htm
|
14 | 18 | configuration.htm
|
Index: cfgmgr/ReadMe.txt |
— | — | @@ -22,8 +22,6 @@ |
23 | 23 | Valid settings:
|
24 | 24 | 0 - Nearest-neighbor stretching
|
25 | 25 | 1 - Bilinear interpolation
|
26 | | -2 - Use pixel shader defined by shaderfile
|
27 | | -3 - Use pixel shader defined by shaderfile, only on primary surface.
|
28 | 26 |
|
29 | 27 | Member highres
|
30 | 28 | REG_DWORD HKCU\DXGL\<app>\AdjustPrimaryResolution
|
— | — | @@ -76,7 +74,7 @@ |
77 | 75 |
|
78 | 76 | Member shaderfile
|
79 | 77 | REG_SZ HKCU\DXGL\<app>\ShaderFile
|
80 | | -Full path to file containing a custom pixel shader for 2D blits.
|
| 78 | +Full path to file containing a post-process shader script.
|
81 | 79 |
|
82 | 80 | Member SortModes
|
83 | 81 | REG_DWORD HKCU\DXGL\<app>\SortModes
|
Index: dxglcfg/dxglcfg.c |
— | — | @@ -540,10 +540,6 @@ |
541 | 541 | SendDlgItemMessage(hWnd,IDC_SCALE,CB_ADDSTRING,0,(LPARAM)buffer);
|
542 | 542 | _tcscpy(buffer,_T("Bilinear"));
|
543 | 543 | SendDlgItemMessage(hWnd,IDC_SCALE,CB_ADDSTRING,1,(LPARAM)buffer);
|
544 | | - _tcscpy(buffer,_T("Custom shader"));
|
545 | | - SendDlgItemMessage(hWnd,IDC_SCALE,CB_ADDSTRING,2,(LPARAM)buffer);
|
546 | | - _tcscpy(buffer,_T("Shader (primary only)"));
|
547 | | - SendDlgItemMessage(hWnd,IDC_SCALE,CB_ADDSTRING,3,(LPARAM)buffer);
|
548 | 544 | SendDlgItemMessage(hWnd,IDC_SCALE,CB_SETCURSEL,cfg->scalingfilter,0);
|
549 | 545 | // aspect
|
550 | 546 | _tcscpy(buffer,_T("Default"));
|
Index: dxglcfg/dxglcfg.rc |
— | — | @@ -49,7 +49,7 @@ |
50 | 50 | COMBOBOX IDC_SCALE, 195, 79, 102, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
|
51 | 51 | LTEXT "Vertical sync", IDC_STATIC, 299, 69, 41, 8, SS_LEFT
|
52 | 52 | COMBOBOX IDC_VSYNC, 299, 79, 100, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
|
53 | | - LTEXT "Scaling shader", IDC_STATIC, 195, 94, 47, 8, SS_LEFT
|
| 53 | + LTEXT "Post-processing shader", IDC_STATIC, 195, 94, 90, 8, SS_LEFT
|
54 | 54 | EDITTEXT IDC_SHADER, 195, 104, 183, 14, ES_AUTOHSCROLL
|
55 | 55 | PUSHBUTTON "...", IDC_BROWSESHADER, 379, 104, 20, 14
|
56 | 56 | LTEXT "Screen aspect ratio", IDC_STATIC, 195, 120, 63, 8, SS_LEFT
|