Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3625)

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc

Issue 1542513002: Switch to standard integer types in gpu/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc
index d295183383d36561173150d816702058c7564daa..c1dee79f28826cb37c81a43e562e9899f45bc53b 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc
@@ -4,6 +4,9 @@
#include "gpu/command_buffer/service/gles2_cmd_decoder.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/command_line.h"
#include "gpu/command_buffer/common/gles2_cmd_format.h"
#include "gpu/command_buffer/common/gles2_cmd_utils.h"
@@ -163,7 +166,7 @@ TEST_P(GLES2DecoderTestDisabledExtensions, CHROMIUMPathRenderingDisabled) {
}
{
cmds::BindFragmentInputLocationCHROMIUMBucket cmd;
- const uint32 kBucketId = 123;
+ const uint32_t kBucketId = 123;
const GLint kLocation = 2;
const char* kName = "testing";
SetBucketAsCString(kBucketId, kName);
@@ -248,11 +251,11 @@ class GLES2DecoderTestWithCHROMIUMPathRendering : public GLES2DecoderTest {
// since the implementation modifies the memory
// area.
void* paths = NULL;
- uint32 paths_shm_id = 0;
- uint32 paths_shm_offset = 0;
+ uint32_t paths_shm_id = 0;
+ uint32_t paths_shm_offset = 0;
GLfloat* transforms = NULL;
- uint32 transforms_shm_id = 0;
- uint32 transforms_shm_offset = 0;
+ uint32_t transforms_shm_id = 0;
+ uint32_t transforms_shm_offset = 0;
if (testcase.transform_values) {
transforms = GetSharedMemoryAs<GLfloat*>();
@@ -404,10 +407,10 @@ class GLES2DecoderTestWithCHROMIUMPathRendering : public GLES2DecoderTest {
void CallAllInstancedCommandsWithInvalidSHM(GLsizei num_paths,
const GLuint* paths,
GLuint* paths_shm,
- uint32 paths_shm_id,
- uint32 paths_shm_offset,
- uint32 transforms_shm_id,
- uint32 transforms_shm_offset) {
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ uint32_t transforms_shm_id,
+ uint32_t transforms_shm_offset) {
const GLuint kPathBase = 0;
const GLenum kFillMode = GL_INVERT;
const GLuint kMask = 0x80;
@@ -1638,14 +1641,15 @@ TEST_P(GLES2DecoderTestWithCHROMIUMPathRendering, InstancedInvalidSHMValues) {
for (int testcase = kFirstTestcase; testcase <= kLastTestcase; ++testcase) {
GLfloat* transforms = GetSharedMemoryAs<GLfloat*>();
- uint32 transforms_shm_id = shared_memory_id_;
- uint32 transforms_shm_offset = shared_memory_offset_;
+ uint32_t transforms_shm_id = shared_memory_id_;
+ uint32_t transforms_shm_offset = shared_memory_offset_;
memcpy(transforms, transform_values, sizeof(transform_values));
GLuint* paths =
GetSharedMemoryAsWithOffset<GLuint*>(sizeof(transform_values));
- uint32 paths_shm_id = shared_memory_id_;
- uint32 paths_shm_offset = shared_memory_offset_ + sizeof(transform_values);
+ uint32_t paths_shm_id = shared_memory_id_;
+ uint32_t paths_shm_offset =
+ shared_memory_offset_ + sizeof(transform_values);
if (testcase & kPathsSHMIdInvalid) {
paths_shm_id = kInvalidSharedMemoryId;
@@ -1669,7 +1673,7 @@ TEST_P(GLES2DecoderTestWithCHROMIUMPathRendering, InstancedInvalidSHMValues) {
TEST_P(GLES2DecoderTestWithCHROMIUMPathRendering,
BindFragmentInputLocationCHROMIUM) {
- const uint32 kBucketId = 123;
+ const uint32_t kBucketId = 123;
const GLint kLocation = 2;
const char* kName = "testing";
const char* kBadName1 = "gl_testing";

Powered by Google App Engine
This is Rietveld 408576698