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

Fixed incorrect iteration index in fragment shader #89

Merged
merged 2 commits into from
Nov 24, 2024
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
| [`a7db4b0`] | 优化了高亮描边特效在锐利边缘处的表现,现在采用了新的边缘检测滤波器。 |
| [`71b525c`] | 优化了透明缝合线填充在较大缩放倍率下的表现。 |

| **补丁** | |
|:-----------------------------------|:----------------------------------------------------|
| `v3.4.1`<br>[`#89`]<br>[`0d2e6b6`] | 修复了透明缝合线填充生效异常的问题。<br>修复了在 NVIDIA 显卡下角色发生白色线条闪烁的问题。 |

## v3.3
| **新增** | |
|:------------------------------------------|:-------------------------------------------|
Expand Down Expand Up @@ -413,6 +417,7 @@
[`#81`]: https://github.com/isHarryh/Ark-Pets/issues/81
[`#82`]: https://github.com/isHarryh/Ark-Pets/pull/82
[`#83`]: https://github.com/isHarryh/Ark-Pets/pull/83
[`#89`]: https://github.com/isHarryh/Ark-Pets/pull/89
[`3253706`]: https://github.com/isHarryh/Ark-Pets/commit/3253706fde859a316b3e08362dd57adb98c1df8c
[`7b2e856`]: https://github.com/isHarryh/Ark-Pets/commit/7b2e8562579ebabbb102b40122cf3130463f03bc
[`ff82a1e`]: https://github.com/isHarryh/Ark-Pets/commit/ff82a1e21ce396c345038b4cb340f10eeca89cf2
Expand Down Expand Up @@ -463,3 +468,4 @@
[`2a4de72`]: https://github.com/isHarryh/Ark-Pets/commit/2a4de72de8768bf9f0996e8a20ed8f6ae4dc4c5e
[`a7db4b0`]: https://github.com/isHarryh/Ark-Pets/commit/a7db4b0e9252e4d08ff1e6e9d4d8b8967ace36bb
[`71b525c`]: https://github.com/isHarryh/Ark-Pets/commit/71b525c77003175f05dc1805f19d038872846acf
[`0d2e6b6`]: https://github.com/isHarryh/Ark-Pets/commit/0d2e6b645717707a2c302ae844614c867fce74bc
3 changes: 2 additions & 1 deletion assets/shaders/OutlineFragment.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ vec4[24] getSimpleNeighbors(vec2 unitLength) {
int i = 0;
for (int y = -2; y <= 2; y++) {
for (int x = -2; x <= 2; x++) {
if (y != 0 && x != 0) {
if (!(y == 0 && x == 0)) {
vec2 offset = vec2(x, y) * unitLength;
neighbors[i] = texture2D(u_texture, v_texCoords + offset);
i++;
}
}
}
Expand Down
Loading