List of commits:
Subject Hash Author Date (UTC)
Draw scene color 12354112add161591f2801600ffc592faddef502 fluffrabbit 2024-07-11 22:18:26
Put framebuffer textures in an array ad44ec442db02cbb194559948d7183580b488cec fluffrabbit 2024-07-11 19:33:58
Initial commit cd1f3278f6f9a79255ba17b3b9eb0c224c8fd091 fluffrabbit 2024-07-10 17:32:30
Commit 12354112add161591f2801600ffc592faddef502 - Draw scene color
Author: fluffrabbit
Author date (UTC): 2024-07-11 22:18
Committer name: fluffrabbit
Committer date (UTC): 2024-07-11 22:18
Parent(s): ad44ec442db02cbb194559948d7183580b488cec
Signer:
Signing key:
Signing status: N
Tree: cfddd7b7bb365bb52552bedc10f071e3ab7fa5a1
File Lines added Lines deleted
src/cfps.c 2 2
File src/cfps.c changed (mode: 100644) (index 17a84f1..c46d082)
... ... const char* skyLitFrag =
88 88 " // Interpolate between lit color and sky. \n" " // Interpolate between lit color and sky. \n"
89 89 " float vis = 1.0 / exp(length(v_RelativePos) * u_fog.a); \n" " float vis = 1.0 / exp(length(v_RelativePos) * u_fog.a); \n"
90 90 " fragColor = \n" " fragColor = \n"
91 " //vec4(mix(SkyColor(-V, 1.0-vis).xyz, dif+spec, vis), baseColor.a);\n"
92 "vec4(N, baseColor.a);"
91 " vec4(mix(SkyColor(-V, 1.0-vis).xyz, dif+spec, vis), baseColor.a);\n"
92 //"vec4(N, baseColor.a);"
93 93 "}"; "}";
94 94
95 95 const char* skyLitSamplers[] = { "u_texture", 0 }; const char* skyLitSamplers[] = { "u_texture", 0 };
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/fluffrabbit/cfps

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/fluffrabbit/cfps

Clone this repository using git:
git clone git://git.rocketgit.com/user/fluffrabbit/cfps

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main