зеркало из https://github.com/AvaloniaUI/angle.git
Add missing includes in samples/sample_util/
BUG=angleproject:892 Change-Id: Ia718306226ce6cfcf91f74947a7775b1439e4fab Reviewed-on: https://chromium-review.googlesource.com/268995 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Родитель
4b6bfe1022
Коммит
cf9dfa493c
|
@ -8,6 +8,7 @@
|
|||
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <math.h>
|
||||
#include <cstddef>
|
||||
|
||||
Matrix4::Matrix4()
|
||||
{
|
||||
|
|
|
@ -7,10 +7,11 @@
|
|||
#ifndef SAMPLE_UTIL_GEOMETRY_UTILS_H
|
||||
#define SAMPLE_UTIL_GEOMETRY_UTILS_H
|
||||
|
||||
#include <cstddef>
|
||||
#include <vector>
|
||||
#include <GLES2/gl2.h>
|
||||
|
||||
#include "Vector.h"
|
||||
#include <vector>
|
||||
|
||||
struct SphereGeometry
|
||||
{
|
||||
|
|
|
@ -6,10 +6,11 @@
|
|||
|
||||
#include "tga_utils.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <limits.h>
|
||||
#include <cstdint>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
TGAImage::TGAImage()
|
||||
: data(0), width(0), height(0)
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
#ifndef SAMPLE_UTIL_TGA_UTILS_HPP
|
||||
#define SAMPLE_UTIL_TGA_UTILS_HPP
|
||||
|
||||
#include <GLES2/gl2.h>
|
||||
|
||||
#include <array>
|
||||
#include <vector>
|
||||
|
||||
#include <GLES2/gl2.h>
|
||||
|
||||
typedef std::array<unsigned char, 4> Byte4;
|
||||
|
||||
struct TGAImage
|
||||
|
|
Загрузка…
Ссылка в новой задаче