mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Add antialiasing (#645)
* Add FXAA * Use existing luma function * Fix order of rendering not to affect GUI by AA * Update Renderer11Draw2D.cpp * Add MSAA as medium and high quality AA levels * Update configuration.h * Update Changes.txt * Update DX11_FinalPass.fx * Reduce FXAA blurriness
This commit is contained in:
parent
6ffa9f04b3
commit
e4f6db0a3e
17 changed files with 190 additions and 29 deletions
|
@ -1109,6 +1109,46 @@ local strings = {
|
|||
"",
|
||||
""
|
||||
},
|
||||
antialiasing = {
|
||||
"Antialiasing",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
},
|
||||
low = {
|
||||
"Low",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
},
|
||||
medium = {
|
||||
"Medium",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
},
|
||||
high = {
|
||||
"High",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
},
|
||||
waiting_for_key = {
|
||||
"Waiting For Key",
|
||||
"",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue