Skip to content

Commit

Permalink
Merge pull request #19 from MrLixm/18-update_reshade_compat
Browse files Browse the repository at this point in the history
18 fix(reshade): reshade-5.9 compatibility
  • Loading branch information
MrLixm committed Nov 10, 2023
2 parents ef852e8 + 095c685 commit d519684
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit d519684

Please sign in to comment.