[0:07][Recap and set the stage for the day][:speech]
[2:01][:Run the game to see our current :lighting situation][:rendering]
[5:42][Consider the current problems in the :lighting][:rendering :run]
[9:14][Determine to validate RayCast()][:speech]
[12:44][Make RayCast() tint the light grey][:lighting :rendering]
[14:13][:Run the game to see less light in the scene][:lighting :rendering]
[14:41][Investigate the possibility that we are wrapping][:lighting :rendering]
[16:46][Make GatherFinalLighting() set the IncidentLight to pure red][:lighting :rendering]
[17:21][:Run the game and do not see a red scene][:lighting :rendering]
[18:20][:Run the game and switch away from the "just emitters" :"debug visualisation"][:lighting :rendering]
[19:04][Scrutinise the :lighting code][:rendering :research]
[22:46][Make CompileZBiasProgram() multiply the DirFalloff in to the final result][:hardware :lighting :rendering]
[27:20][:Run the game to see a little difference, but still no ambient :lighting][:rendering]
[28:27][Read through GatherFinalLighting() and OutputLightingTextures()][:research :lighting :rendering]
[30:17][Step in to OutputLightingTextures() and inspect the IncidentLight, Colour and Directional values][:lighting :rendering]
[32:15][Note that we don't have a way to directly visualise :lighting quads][:"debug visualisation" :rendering :run]
[35:05][Make CompileZBiasProgram() renormalise the contribution colour if the alpha is greater than 0][:hardware :lighting :rendering]
[36:04][:Run the game to see still nonsense results][:lighting :rendering]
[36:40][Hard set the :lighting colour to green in CompileZBiasProgram()][:hardware :rendering]
[36:59][:Run the game to see pure green, except on the blue surface][:lighting :rendering]
[37:37][Verify that all pure colours hard set by CompileZBiasProgram() produce the expected results][:hardware :lighting :rendering]
[38:56][:Run to see pure white and note that the voxel interpolation isn't totally busted][:lighting :rendering]
[39:27][Hard set the LightC to white and the DirFalloff to 1.0f in CompileZBiasProgram()][:hardware :lighting :rendering]
[41:06][:Run the game to see white light, but some incorrectly dark spots][:lighting :rendering]
[43:14][Try to make CompileZBiasProgram() set the colour to pure yellow where there is no light sample][:hardware :lighting :rendering]
[44:25][:Run the game to see spots of yellow in unexpected places][:lighting :rendering]
[44:51][Temporarily prevent CompileZBiasProgram() from setting the colour to yellow, and instead set the SurfaceReflect directly to the light colour, rather than multiplying it in][:hardware :lighting :rendering]
[45:45][:Run the game to see the incoming light colour][:lighting :rendering]
[46:04][Make CompileZBiasProgram() set the colour to pure yellow where there is no light sample][:hardware :lighting :rendering]
[46:20][:Run the game to see yellow where we cannot compute :lighting results][:rendering]
[47:09][Try to make CompileZBiasProgram() set the colour to red][:hardware :lighting :rendering]
[47:18][:Run the game to see some red places][:lighting :rendering]
[47:39][Make CompileZBiasProgram() track the Contrib value all the way down the pipeline and introduce VoxLerp() to use this value][:hardware :lighting :rendering]
[50:56][:Run the game to see that it already looks better][:lighting :rendering]
[51:34][Begin to enable VoxLerp() to handle the case when the :lighting contribution is 0][:hardware :rendering]
[53:01][Consider how better to handle voxels that have no :lighting contribution][:rendering :speech]
[53:38][Revert the passing of Contrib() all down the pipe in CompileZBiasProgram()][:hardware :lighting :rendering]
[54:17][Take a quick break][:admin]
[55:03][:Run the game to see our current red-tinted :lighting situation][:rendering]
[55:44][Make OutputLightingTextures() gather the colour of voxels whose :lighting contribution is 0 from their neighbour][:lighting :rendering]
[1:00:48][:Run the game to see no difference][:lighting :rendering]
[1:01:27][Make OutputLightingTextures() zero-initialise the Neighbour][:lighting :rendering]
[1:01:36][:Run the game and consider that the artifacts may only be occurring on voxels at the edge of the scene][:lighting :rendering]
[1:04:47][Temporarily assert in OutputLightingTextures() that Neighbor != 0][:lighting :rendering]
[1:05:10][:Run the game to determine that we are doing some filling][:lighting :rendering]
[1:07:44][Make CompileZBiasProgram() colour the voxels by their location][:"debug visualisation" :hardware :lighting :rendering]
[1:09:10][:Run the game to see this :"debug visualisation" confirming that the voxel interpolation is fine][:lighting :rendering]
[1:10:02][Make CompileZBiasProgram() colour the voxels green / red to indicate the presence / absence of :lighting samples][:"debug visualisation" :hardware :rendering]
[1:10:49][:Run the game to see this :"debug visualisation"][:lighting :rendering]
[2:03:47][@sadisttrombone][Q: Regarding win calc, the size of the window determines how many buttons are shown. You can either stretch the window vertically or you can press the up arrow button (in the UI) to make the shown buttons shift into the other set like 1/x and e^x]
[2:04:45][@vkar2][Q: I think the error in the color are in the same position where the normals calculation looks funny][:lighting :rendering]
[2:05:43][@radovik][Q: Not sure if you heard, but someone rewrote depends.exe for win 10[ref
site=GitHub
page=lucasg/dependencies
url=https://github.com/lucasg/dependencies]]
[2:08:22][@dragoonx6][Q: Seeing you used emacs without code completion, and now ~4coder, how do you work without code completion? Don't you think it could help you with both productivity and discoverability? I'm a fan of YouCompleteMe for vim]
[2:10:26][@longboolean][Q: When the :lighting is in realtime will that tend to hide some of the more minor artifacts?][:rendering]
[2:13:05][@dragoonx6][Q: It's showing a heads up display of the possible arguments]
[2:13:56][@sired22][Q: I know finding a bad API is not hard, but out of curiosity did you ever run into an API that was great to work with? One that you seemed to magically just click with?]