Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(reshade): reshade-5.9 compatibility #19

Merged
merged 3 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "AgXc"
version = "0.5.2"
version = "0.5.3"
description = "Fork of Troy.S AgX, a display rendering transform available via OCIO and more."
authors = ["Liam Collod <monsieurlixm@gmail.com>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions reshade/reshade-shaders/Shaders/AgX.fx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ References:

namespace AgX {

#define __version__ "1.1.2"
#define __version__ "1.1.3"
#define CATEGORY_DEBUG "DEBUG"
#define CATEGORY_INPUT "Input (Pre AgX)"
#define CATEGORY_OUTPUT "Output (Post AgX)"
Expand Down Expand Up @@ -150,7 +150,7 @@ namespace AgX {


texture LUTTex < source = "AgX-default_contrast.lut.png"; > { Width = LUT_DIMENSIONS.x; Height = LUT_DIMENSIONS.y; Format = RGBA8; };
sampler LUTSampler {Texture = LUTTex; Format = RGBA8;};
sampler2D LUTSampler {Texture = LUTTex;};


static const float3 luma_coefs_bt709 = float3(0.2126, 0.7152, 0.0722);
Expand Down