Commit f4f8db85 by Jamie Madill Committed by Commit Bot

Fix a couple forward declares in angletypes.h.

These were vestigal from previous code. BUG=angleproject:1593 Change-Id: I1d9a8e6f60d1dadf8a8a598bdbddd98457eb559c Reviewed-on: https://chromium-review.googlesource.com/442651Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 34fefb7e
...@@ -44,6 +44,7 @@ class Context; ...@@ -44,6 +44,7 @@ class Context;
class ContextState; class ContextState;
class Shader; class Shader;
class ShaderProgramManager; class ShaderProgramManager;
class State;
class InfoLog; class InfoLog;
class Buffer; class Buffer;
class Framebuffer; class Framebuffer;
......
...@@ -20,10 +20,6 @@ ...@@ -20,10 +20,6 @@
namespace gl namespace gl
{ {
class Buffer; class Buffer;
class State;
class Program;
struct VertexAttribute;
struct VertexAttribCurrentValueData;
enum PrimitiveType enum PrimitiveType
{ {
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
namespace gl namespace gl
{ {
struct VertexAttribute;
struct FormatType final struct FormatType final
{ {
......
...@@ -15,6 +15,11 @@ ...@@ -15,6 +15,11 @@
#include <stdint.h> #include <stdint.h>
#include <vector> #include <vector>
namespace gl
{
struct VertexAttribute;
}
namespace rx namespace rx
{ {
class BufferFactoryD3D; class BufferFactoryD3D;
......
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