In Chromium Mac builds do not find cstdint, use stdint.h instead

BUG=angleproject:891

Change-Id: Idf2a89ad26955df3579bb2c1883137589f68f573
Reviewed-on: https://chromium-review.googlesource.com/299720
Tryjob-Request: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Geoff Lang <geofflang@chromium.org>
Tryjob-Request: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Tested-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez
2015-09-14 11:52:44 -07:00
parent 1b27199e79
commit 178e59741b
6 changed files with 20 additions and 19 deletions

View File

@@ -7,17 +7,17 @@
#ifndef SAMPLE_UTIL_SAMPLE_APPLICATION_H
#define SAMPLE_UTIL_SAMPLE_APPLICATION_H
#include <list>
#include <memory>
#include <stdint.h>
#include <string>
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include "OSWindow.h"
#include "Timer.h"
#include <string>
#include <list>
#include <cstdint>
#include <memory>
class EGLWindow;
class SampleApplication

View File

@@ -6,10 +6,10 @@
#include "tga_utils.h"
#include <limits.h>
#include <cstdint>
#include <fstream>
#include <iostream>
#include <limits.h>
#include <stdint.h>
#include <string>
TGAImage::TGAImage()

View File

@@ -6,7 +6,7 @@
#include "test_utils/ANGLETest.h"
#include <cstdint>
#include <stdint.h>
using namespace angle;

View File

@@ -7,17 +7,17 @@
#ifndef UTIL_EGLWINDOW_H_
#define UTIL_EGLWINDOW_H_
#include <GLES3/gl3.h>
#include <list>
#include <memory>
#include <stdint.h>
#include <string>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <GLES3/gl3.h>
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <string>
#include <list>
#include <cstdint>
#include <memory>
#include "common/angleutils.h"
class OSWindow;

View File

@@ -7,13 +7,14 @@
#ifndef SAMPLE_UTIL_WINDOW_H
#define SAMPLE_UTIL_WINDOW_H
#include "Event.h"
#include <list>
#include <stdint.h>
#include <string>
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <cstdint>
#include <list>
#include <string>
#include "Event.h"
class OSWindow
{

View File

@@ -9,8 +9,8 @@
#ifndef UTIL_OSX_TIMER_H_
#define UTIL_OSX_TIMER_H_
#include <stdint.h>
#include <time.h>
#include <cstdint>
#include "Timer.h"