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

Unified Diff: gpu/command_buffer/client/program_info_manager.h

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/client/program_info_manager.h
diff --git a/gpu/command_buffer/client/program_info_manager.h b/gpu/command_buffer/client/program_info_manager.h
index fbae19ae375e6581263bc82e81f446000f6aa8b1..b3091e291ed4ad781e1cccf8b867ad745239cb61 100644
--- a/gpu/command_buffer/client/program_info_manager.h
+++ b/gpu/command_buffer/client/program_info_manager.h
@@ -6,6 +6,7 @@
#define GPU_COMMAND_BUFFER_CLIENT_PROGRAM_INFO_MANAGER_H_
#include <GLES3/gl3.h>
+#include <stdint.h>
#include <string>
#include <vector>
@@ -188,16 +189,16 @@ class GLES2_IMPL_EXPORT ProgramInfoManager {
GLuint index) const;
// Updates the ES2 only program info after a successful link.
- void UpdateES2(const std::vector<int8>& result);
+ void UpdateES2(const std::vector<int8_t>& result);
// Updates the ES3 UniformBlock info after a successful link.
- void UpdateES3UniformBlocks(const std::vector<int8>& result);
+ void UpdateES3UniformBlocks(const std::vector<int8_t>& result);
// Updates the ES3 Uniformsiv info after a successful link.
- void UpdateES3Uniformsiv(const std::vector<int8>& result);
+ void UpdateES3Uniformsiv(const std::vector<int8_t>& result);
// Updates the ES3 TransformFeedbackVaryings info after a successful link.
- void UpdateES3TransformFeedbackVaryings(const std::vector<int8>& result);
+ void UpdateES3TransformFeedbackVaryings(const std::vector<int8_t>& result);
bool IsCached(ProgramInfoType type) const;
« no previous file with comments | « gpu/command_buffer/client/mapped_memory_unittest.cc ('k') | gpu/command_buffer/client/program_info_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698