Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: remoting/client/gl_helpers.h

Issue 2614443003: Moving the GL implementation details into a sub folder for client display. (Closed)
Patch Set: Adding deps restriction on r/c/display; Moving sys_opengl.h Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/gl_desktop.cc ('k') | remoting/client/gl_helpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/gl_helpers.h
diff --git a/remoting/client/gl_helpers.h b/remoting/client/gl_helpers.h
deleted file mode 100644
index 8dba721fbae157f92d41e80882c9ee8eb21489da..0000000000000000000000000000000000000000
--- a/remoting/client/gl_helpers.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef REMOTING_CLIENT_GL_HELPERS_H_
-#define REMOTING_CLIENT_GL_HELPERS_H_
-
-#include "base/macros.h"
-#include "remoting/client/sys_opengl.h"
-
-namespace remoting {
-
-// Compiles a shader and returns the reference to the shader if it succeeds.
-GLuint CompileShader(GLenum shader_type, const char* shader_source);
-
-// Creates a program with the given reference to the vertex shader and fragment
-// shader. returns the reference of the program if it succeeds.
-GLuint CreateProgram(GLuint vertex_shader, GLuint fragment_shader);
-
-// Creates and returns the texture names if it succeeds.
-GLuint CreateTexture();
-
-// Creates a GL_ARRAY_BUFFER and fills it with |data|. Returns the reference to
-// the buffer.
-GLuint CreateBuffer(const void* data, int size);
-
-} // namespace remoting
-
-#endif // REMOTING_CLIENT_GL_HELPERS_H_
« no previous file with comments | « remoting/client/gl_desktop.cc ('k') | remoting/client/gl_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698