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:
Corentin Wallez 2015-05-04 13:55:41 -04:00
Родитель 4b6bfe1022
Коммит cf9dfa493c
4 изменённых файлов: 9 добавлений и 6 удалений

Просмотреть файл

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