summaryrefslogtreecommitdiffstats
path: root/o3d/core/cross/command_buffer/renderer_cb.cc
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/core/cross/command_buffer/renderer_cb.cc')
-rw-r--r--o3d/core/cross/command_buffer/renderer_cb.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/o3d/core/cross/command_buffer/renderer_cb.cc b/o3d/core/cross/command_buffer/renderer_cb.cc
index f2d919b5..d576874 100644
--- a/o3d/core/cross/command_buffer/renderer_cb.cc
+++ b/o3d/core/cross/command_buffer/renderer_cb.cc
@@ -184,9 +184,9 @@ void RendererCB::PlatformSpecificClear(const Float4 &color,
bool depth_flag,
int stencil,
bool stencil_flag) {
- uint32 buffers = (color_flag ? GAPIInterface::COLOR : 0) |
- (depth_flag ? GAPIInterface::DEPTH : 0) |
- (stencil_flag ? GAPIInterface::STENCIL : 0);
+ uint32 buffers = (color_flag ? command_buffer::kColor : 0) |
+ (depth_flag ? command_buffer::kDepth : 0) |
+ (stencil_flag ? command_buffer::kStencil : 0);
helper_->Clear(buffers, color[0], color[1], color[2], color[3],
depth, stencil);
}