Commit 178e5974 by Corentin Wallez

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: 's avatarGeoff Lang <geofflang@chromium.org> Tryjob-Request: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 1b27199e
......@@ -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
......
......@@ -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()
......
......@@ -6,7 +6,7 @@
#include "test_utils/ANGLETest.h"
#include <cstdint>
#include <stdint.h>
using namespace angle;
......
......@@ -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;
......
......@@ -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
{
......
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment