Cel/Cartoon/Anime shader
- AlucardDH
- Topic Author
Less
More
I wanted to share a shader i wrote to recreate drawing/anime/manga effects.
Link
github.com/AlucardDH/dh-reshade-shaders/.../Shaders/dh_anime.fx
Original
Examples
Any feedback is wellcomed
- lining
- shading
- saturation
Link
github.com/AlucardDH/dh-reshade-shaders/.../Shaders/dh_anime.fx
Original
Examples
Any feedback is wellcomed

The following user(s) said Thank You: Viper_Joe
Please Log in or Create an account to join the conversation.
- chuatrum
Less
More
Please Log in or Create an account to join the conversation.
- fuxs
Less
More
- Daodan
Less
More
If the 'SV_Position' semantic is added before the 'TEXCOORD0' one it works. (in D3D11 that is)
Is that a bug in ReShade?
Changeto
Andto
Is that a bug in ReShade?
Change
void PS_Input(in float2 coords : TEXCOORD0, out float4 outNormal : SV_Target, out float4 outBlur : SV_Target1)
void PS_Input(float4 vpos : SV_Position, float2 coords : TEXCOORD0, out float4 outNormal : SV_Target, out float4 outBlur : SV_Target1)
And
void PS_Manga(in float2 coords : TEXCOORD0, out float4 outPixel : SV_Target)
void PS_Manga(float4 vpos : SV_Position, float2 coords : TEXCOORD0, out float4 outPixel : SV_Target)
The following user(s) said Thank You: AlucardDH
Please Log in or Create an account to join the conversation.
- crosire
Less
More
Not a bug, just a D3D11 limitation (pixel shader always need SV_Position input).
The following user(s) said Thank You: AlucardDH
Please Log in or Create an account to join the conversation.
Thanks for the info, i pushed the fix to github.
Please Log in or Create an account to join the conversation.
- mirt81
Less
More
5 years 7 months ago - 5 years 7 months ago #7
by mirt81
Replied by mirt81 on topic Cel/Cartoon/Anime shader
If this Shader works per Colour-Edge-Detection is there a way for Normal-Depth-Edge-Detection like Outline.fx ! ?
Outline.fx have also Colour-Edge-Detection but this mod have often Problems showing Outlines corect and Normal-Depth Edge Detection works always .
reshade.me/forum/shader-presentation/261...and-outline?start=35
The Reason for my Question is that this Great Shader not work for all Games that Great
Th@nks !
Outline.fx have also Colour-Edge-Detection but this mod have often Problems showing Outlines corect and Normal-Depth Edge Detection works always .
reshade.me/forum/shader-presentation/261...and-outline?start=35
The Reason for my Question is that this Great Shader not work for all Games that Great

Th@nks !
Last edit: 5 years 7 months ago by mirt81.
Please Log in or Create an account to join the conversation.