Skip to content

Commit

Permalink
Renamed certain settings
Browse files Browse the repository at this point in the history
  • Loading branch information
papadanku committed Aug 4, 2024
1 parent c713a9b commit 8305e3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions shaders/kContour.fx
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
*/

uniform int _Method <
ui_label = "Edge Detection Method";
ui_label = "Edge Detection Kernel";
ui_type = "combo";
ui_items = "ddx(),ddy()\0Sobel: Bilinear 3x3\0Prewitt: Bilinear 5x5\0Sobel: Bilinear 5x5\0Prewitt: 3x3\0Scharr: 3x3\0Frei-Chen\0";
> = 1;

uniform int _WeightMode <
ui_label = "Edge Weighting Method";
ui_label = "Edge Weighting Mode";
ui_type = "combo";
ui_items = "Single-Channel\0Multi-Channel\0";
> = 0;
Expand Down
4 changes: 2 additions & 2 deletions shaders/shared/cCamera.fxh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#if defined(INCLUDE_CCAMERA_OUTPUT)
uniform float _CShadeExposureBias <
ui_category = "Output: AutoExposure";
ui_label = "Exposure Compensation Bias";
ui_label = "Compensation Bias";
ui_type = "slider";
ui_step = 0.001;
ui_min = -4.0;
Expand All @@ -40,7 +40,7 @@

uniform float _CShadeExposureRange <
ui_category = "Output: AutoExposure";
ui_label = "Exposure Compensation Range";
ui_label = "Compensation Range";
ui_type = "slider";
ui_step = 0.001;
ui_min = 1.0;
Expand Down

0 comments on commit 8305e3d

Please sign in to comment.