Cleanup: spelling in comments

This commit is contained in:
2022-01-06 13:54:52 +11:00
parent aa363ec2ae
commit 499fec6f79
114 changed files with 233 additions and 224 deletions

View File

@@ -377,7 +377,7 @@ void GLStateManager::set_blend(const eGPUBlend value)
break;
}
case GPU_BLEND_ADDITIVE: {
/* Do not let alpha accumulate but premult the source RGB by it. */
/* Do not let alpha accumulate but pre-multiply the source RGB by it. */
src_rgb = GL_SRC_ALPHA;
dst_rgb = GL_ONE;
src_alpha = GL_ZERO;