浏览代码

REVIEWED: `rlCullFace()` -> `rlSetCullFace()`

Reviewed formating to follow raylib coding conventions.
pull/2804/head
Ray 2 年前
父节点
当前提交
e6306e5e76
共有 1 个文件被更改,包括 10 次插入11 次删除
  1. +10
    -11
      src/rlgl.h

+ 10
- 11
src/rlgl.h 查看文件

@ -500,8 +500,8 @@ typedef enum {
// Face culling mode // Face culling mode
typedef enum { typedef enum {
RL_FRONT = 0, RL_CULL_FACE_FRONT = 0,
RL_BACK RL_CULL_FACE_BACK
} rlCullMode; } rlCullMode;
//------------------------------------------------------------------------------------ //------------------------------------------------------------------------------------
@ -584,7 +584,7 @@ RLAPI void rlEnableDepthMask(void); // Enable depth write
RLAPI void rlDisableDepthMask(void); // Disable depth write RLAPI void rlDisableDepthMask(void); // Disable depth write
RLAPI void rlEnableBackfaceCulling(void); // Enable backface culling RLAPI void rlEnableBackfaceCulling(void); // Enable backface culling
RLAPI void rlDisableBackfaceCulling(void); // Disable backface culling RLAPI void rlDisableBackfaceCulling(void); // Disable backface culling
RLAPI void rlCullFace(n">rlCullMode mode); // Set face culling mode RLAPI void rlSetCullFace(kt">int mode); // Set face culling mode
RLAPI void rlEnableScissorTest(void); // Enable scissor test RLAPI void rlEnableScissorTest(void); // Enable scissor test
RLAPI void rlDisableScissorTest(void); // Disable scissor test RLAPI void rlDisableScissorTest(void); // Disable scissor test
RLAPI void rlScissor(int x, int y, int width, int height); // Scissor test RLAPI void rlScissor(int x, int y, int width, int height); // Scissor test
@ -1679,14 +1679,13 @@ void rlEnableBackfaceCulling(void) { glEnable(GL_CULL_FACE); }
void rlDisableBackfaceCulling(void) { glDisable(GL_CULL_FACE); } void rlDisableBackfaceCulling(void) { glDisable(GL_CULL_FACE); }
// Set face culling mode // Set face culling mode
void rlCullFace(rlCullMode mode) { void rlSetCullFace(int mode)
switch (mode) { {
case RL_BACK: switch (mode)
glCullFace(GL_BACK); {
break; case RL_CULL_FACE_BACK: glCullFace(GL_BACK); break;
case RL_FRONT: case RL_CULL_FACE_FRONT: glCullFace(GL_FRONT); break;
glCullFace(GL_FRONT); default: break;
break;
} }
} }

||||||
x
 
000:0
正在加载...
取消
保存