////////////////////////////////////////////////////////////////////////////////
//// crt-royale, by TroggleMonkey <trogglemonkey@gmx.com> ////
//// Last Updated: August 16, 2014 ////
////////////////////////////////////////////////////////////////////////////////
REQUIREMENTS:
The earliest official Retroarch version fully supporting crt-royale is 1.0.0.3
(currently unreleased). Earlier versions lack shader parameters and proper
mipmapping and sRGB support, but the shader may still run at reduced quality.
The earliest development version fully supporting this shader is:
commit ba40be909913c9ccc34dab5d452fba4fe61af9d0
Author: Themaister <maister@archlinux.us>
Date: Thu Jun 5 17:41:10 2014 +0200
A few earlier revisions support the required features, but they may be buggier.
BASICS:
crt-royale is a highly customizable CRT shader for Retroarch and other programs
supporting the libretro Cg shader standard. It uses a number of nonstandardized
extensions like sRGB FBO's, mipmapping, and runtime shader parameters, but
hopefully it will run without much of a fuss on new implementations of the
standard as well.
There are a huge number of parameters. Among the things you can customize:
* Phosphor mask type: An aperture grille, slot mask, and shadow mask are each
included, although the latter won't be seeing much usage until 1440p displays
and better become more common (4k UHD and 8k UHD are increasingly optimal).
* Phosphor mask dot pitch
* Phosphor mask resampling method: Choose between Lanczos sinc resizing,
mipmapped hardware resizing, and no resizing of the input LUT.
* Phosphor bloom softness and type (real or fake ;))
* Gaussian and generalized Gaussian scanline beam properties/distribution,
including convergence offsets
* Screen geometry, including curvature (spherical, alternative spherical, or
cylindrical like Trinitrons), tilt, and borders
* Antialiasing level, resampling filter, and sharpness parameters for gracefully
combining screen curvature with high-frequency phosphor details, including
optionally resampling based on RGB subpixel positions.
* Halation (electrons bouncing under the glass and lighting random phosphors)
random phosphors)
* Refractive diffusion (light spreading from the imperfect CRT glass face)
* Interlacing options
* etc.
There are two major ways to customize the shader:
* Runtime shader parameters allow convenient experimentation with real-time
feedback, but they are much slower, because they prevent static evaluation of
a lot of math. Disabling them drastically speeds up the shader.
* If runtime shader parameters are disabled (partially or totally), those same
settings can be freely altered in the text of the user-settings.h file. There
are also a number of other static-only settings, including the #define macros
which indicate where and when to allow runtime shader parameters. To disable
them entirely, comment out the "#define RUNTIME_SHADER_PARAMS_ENABLE" line by
putting a double-slash ("//") at the beginning...your FPS will skyrocket.
You may also note that there are two major versions of the shader preset:
* crt-royale.cgh is the "full" version of the shader, which blooms the light
from the brighter phosphors to maintain brightness and avoid clipping.
* crt-royale-fake-bloom.cgh is the "cheater's" version of the shader, which
only fakes the bloom based on carefully blending in a [potentially blurred]
version of the original input. This version is MUCH faster, and you have to
strain to see the difference, so people with slower GPU's will prefer it.
There's a lot to play around with, and I encourage everyone using this shader to
read through the user-settings.h file to learn about the parameters. Before
loading the shader, be sure to read the next section, entitled...
////////////////////////////////////////////////////////////////////////////////
//// FREQUENTLY EXPECTED QUESTIONS: ////
////////////////////////////////////////////////////////////////////////////////
1.) WHY IS THE SHADER CRASHING WHEN I LOAD IT?!?
Do you get C6001 or C6002 errors with integrated graphics, like Intel HD 4000?
If so, please try one of the following .cgp presets:
* crt-royale-intel.cgp
* crt-royale-fake-bloom-intel.cgp
These load .cg wrappers that #define INTEGRATED_GRAPHICS_COMPATIBILITY_MODE
(also available in user-settings.h) before loading the main .cg shader files.
Integrated graphics compatibility mode will disable these three features, which
currently require more registers or instructions than Intel GPU's allow:
* PHOSPHOR_MASK_MANUALLY_RESIZE: The phosphor mask will be softer.
(This may be reenabled in a later release.)
* RUNTIME_GEOMETRY_MODE: You must change the screen geometry/curvature using
the geom_mode_static setting in user-settings.h.
* The high-quality 4x4 Gaussian resize for the bloom approximation
Using Intel-specific .cgp files is equivalent to #defining
INTEGRATED_GRAPHICS_COMPATIBILITY_MODE in your user-settings.h. Out of the box,
user-settings.h is configured for maximum configurability and compatibility with
dedicated nVidia and AMD/ATI GPU's. Compatibility mode is disabled by default
to avoid silently degrading quality for AMD/ATI and nVidia users, so Intel-
specific .cgp's are a convenient way for Intel users to play with the shader
without editing text files.
I've tested this solution on Intel HD 4000 graphics, and it should work for that
GPU at least, but please let me know if you're still having problems!
--------------------------------------------------------------------------------
2.) WHY IS EVERYTHING SO SLOW?!?:
Out of the box, this will be a problem for all but monster GPU's. The default
user-settings.h file disables any features and optimizations which might cause
compilation failure on AMD/ATI GPU's. Despite the name of the options, this is
not a problem with your card or drivers; it's a shortcoming in the Cg shader
compiler's nVidia-centric profile setups.
Uncommenting the following #define macros at the top of user-settings.h will
help performance a good deal on compatible nVidia cards:
#define DRIVERS_ALLOW_DERIVATIVES
#define DRIVERS_ALLOW_DYNAMIC_BRANCHES
#define ACCOMODATE_POSSIBLE_DYNAMIC_LOOPS
#define DRIVERS_ALLOW_TEX2DLOD
#define DRIVERS_ALLOW_TEX2DBIAS
A few of these warrant some elaboration. First, derivatives:
Derivatives allow the shader to cheaply calculate a tangent-space matrix for
correct antialiasing when curvature or overscan are used. Without them, there
are two options:
a.) Cheat, and there will be artifacts with strong cylindrical curvature
b.) Compute the correct tangent-space matrix analytically. This is used
by default, and it's controlled by this option near the bottom:
geom_force_correct_tangent_matrix = true
Dynamic branches:
Dynamic branches allow the shader to avoid performing computations that it
doesn't need (but might have, given different runtime options). Without them,
the shader has to either let the GPU evaluate every possible codepath and select
a result, or make a "best guess" ahead of time. The full phosphor bloom suffers
most from not having dynamic branches, because the shader doesn't know how big
of a blur to use until it knows your phosphor mask dot pitch...which you set at
runtime if shader parameters are enabled.
If RUNTIME_PHOSPHOR_BLOOM_SIGMA is commented out (faster), this won't matter:
The shader will just select the blur size and standard deviation suitable for
the mask_triad_size_desired_static setting in user-settings.cgp. It will be
fast, but larger triads won't blur enough, and smaller triads will blur more
than they need to. However, if RUNTIME_PHOSPHOR_BLOOM_SIGMA is enabled, the
shader will calculate an optimal standard deviation and *try* to use the right
blur size for it...but using an "if standard deviation
没有合适的资源?快使用搜索试试~ 我知道了~
mac 小霸王游戏/红白机/街机模拟器 OpenEmu
共768个文件
strings:219个
plist:154个
slang:67个
需积分: 0 1 下载量 186 浏览量
2024-09-18
22:55:30
上传
评论
收藏 37.72MB ZIP 举报
温馨提示
mac 小霸王游戏/红白机/街机模拟器 OpenEmu
资源推荐
资源详情
资源评论
收起资源包目录
mac 小霸王游戏/红白机/街机模拟器 OpenEmu (768个子文件)
Updater.app 28B
Atari 2600 58KB
Atari 5200 57KB
Atari 7800 53KB
Autoupdate 730KB
Autoupdate 27B
broker 58KB
Assets.car 6.21MB
Assets.car 1.56MB
Assets.car 893KB
Assets.car 833KB
Assets.car 732KB
Assets.car 650KB
Assets.car 640KB
Assets.car 635KB
Assets.car 624KB
Assets.car 574KB
Assets.car 574KB
Assets.car 571KB
Assets.car 523KB
Assets.car 477KB
Assets.car 465KB
Assets.car 448KB
Assets.car 440KB
Assets.car 436KB
Assets.car 432KB
Assets.car 424KB
Assets.car 420KB
Assets.car 364KB
Assets.car 363KB
Assets.car 362KB
Assets.car 355KB
Assets.car 355KB
Assets.car 335KB
Assets.car 286KB
Assets.car 252KB
Assets.car 243KB
Assets.car 216KB
Assets.car 118KB
1.2 to 1.3.cdm 25KB
0.2 to 0.3.cdm 25KB
1.0 Beta 4 to 1.0.cdm 25KB
1.0 Beta to 0.2.cdm 25KB
1.1 to 1.2.cdm 24KB
CodeResources 49KB
CodeResources 17KB
CodeResources 4KB
CodeResources 4KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 3KB
CodeResources 2KB
CodeResources 2KB
CodeResources 2KB
CodeResources 2KB
CodeResources 2KB
CodeResources 2KB
CodeResources 2KB
ColecoVision 60KB
ReleaseNotesColorStyle.css 231B
Current 1B
Current 1B
Current 1B
Current 1B
Current 1B
Current 1B
Current 1B
OpenEmuText.dae 432KB
OpenEmu.dae 171KB
Downloader 184KB
libswift_Concurrency.dylib 1.07MB
共 768 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论
吃苹果的牛顿顿
- 粉丝: 859
- 资源: 22
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功