summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-09-16 13:17:31 +0200
committerraysan5 <[email protected]>2020-09-16 13:17:31 +0200
commitb870b9f8280274fac6ad784031ba05909cc4a58c (patch)
treea3b78865498ed40242ac5b187be6865dbee4462a /src/rlgl.h
parent90befff4b8ee15d52d8497957af4acff76fd5410 (diff)
downloadraylib-b870b9f8280274fac6ad784031ba05909cc4a58c.tar.gz
raylib-b870b9f8280274fac6ad784031ba05909cc4a58c.zip
Minor: remove tabs
Diffstat (limited to 'src/rlgl.h')
-rw-r--r--src/rlgl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 09d74736..4a936421 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -3641,8 +3641,8 @@ void BeginBlendMode(int mode)
switch (mode)
{
- case BLEND_ALPHA: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glBlendEquation(GL_FUNC_ADD); break;
- case BLEND_ADDITIVE: glBlendFunc(GL_SRC_ALPHA, GL_ONE); glBlendEquation(GL_FUNC_ADD); break;
+ case BLEND_ALPHA: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glBlendEquation(GL_FUNC_ADD); break;
+ case BLEND_ADDITIVE: glBlendFunc(GL_SRC_ALPHA, GL_ONE); glBlendEquation(GL_FUNC_ADD); break;
case BLEND_MULTIPLIED: glBlendFunc(GL_DST_COLOR, GL_ONE_MINUS_SRC_ALPHA); glBlendEquation(GL_FUNC_ADD); break;
case BLEND_ADD_COLORS: glBlendFunc(GL_ONE, GL_ONE); glBlendEquation(GL_FUNC_ADD); break;
case BLEND_SUBTRACT_COLORS: glBlendFunc(GL_ONE, GL_ONE); glBlendEquation(GL_FUNC_SUBTRACT); break;