summaryrefslogtreecommitdiffstats
path: root/o3d/command_buffer/service/cross/texture_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/command_buffer/service/cross/texture_utils.h')
-rw-r--r--o3d/command_buffer/service/cross/texture_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/o3d/command_buffer/service/cross/texture_utils.h b/o3d/command_buffer/service/cross/texture_utils.h
index aa186b5..1f25ca2 100644
--- a/o3d/command_buffer/service/cross/texture_utils.h
+++ b/o3d/command_buffer/service/cross/texture_utils.h
@@ -75,8 +75,8 @@ struct TransferInfo {
// Round a value up, so that it is divisible by the block size.
static inline unsigned int RoundToBlockSize(unsigned int base,
unsigned int block) {
- DCHECK_GT(base, 0);
- DCHECK_GT(block, 0);
+ DCHECK_GT(base, 0U);
+ DCHECK_GT(block, 0U);
return block + base - 1 - (base - 1) % block;
}