mirror of
https://github.com/godotengine/godot-angle-static.git
synced 2026-01-03 14:09:33 +03:00
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:
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user