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

Unified Diff: third_party/gles_book_examples/Common/Include/esUtil_win.h

Issue 525019: Revert 35500 - Added an application framework for demos. Ported hellotriangle... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 12 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
Index: third_party/gles_book_examples/Common/Include/esUtil_win.h
===================================================================
--- third_party/gles_book_examples/Common/Include/esUtil_win.h (revision 35503)
+++ third_party/gles_book_examples/Common/Include/esUtil_win.h (working copy)
@@ -15,11 +15,43 @@
#ifndef ESUTIL_WIN_H
#define ESUTIL_WIN_H
+///
+// Includes
+//
+
#ifdef __cplusplus
+
extern "C" {
-#endif // __cplusplus
+#endif
+
///
+// Macros
+//
+
+///
+// Types
+//
+
+///
+// Public Functions
+//
+
+///
+// WinCreate()
+//
+// Create Win32 instance and window
+//
+GLboolean WinCreate ( ESContext *esContext, const char *title );
+
+///
+// WinLoop()
+//
+// Start main windows loop
+//
+void WinLoop ( ESContext *esContext );
+
+///
// WinTGALoad()
//
// TGA loader win32 implementation
@@ -28,6 +60,6 @@
#ifdef __cplusplus
}
-#endif // __cplusplus
+#endif
-#endif // ESUTIL_WIN_H
+#endif // ESUTIL_WIN_H

Powered by Google App Engine
This is Rietveld 408576698