| 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;
|
|
|
|
|