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

Side by Side Diff: gpu/demos/simple_texture_cubemap/main.cc

Issue 549159: Hooked all demos to gpu/demos.gyp. Now all demos run as both - standalone exe... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gpu/demos/simple_texture_2d/main.cc ('k') | gpu/demos/simple_vertex_shader/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This is a simple example that draws a sphere with a cubemap image applied.
6
7 #include "gpu/demos/gles2_book/example.h"
8 #include "third_party/gles2_book/Chapter_9/Simple_TextureCubemap/Simple_TextureC ubemap.h"
9
10 namespace gpu {
11 namespace demos {
12 namespace gles2_book {
13 typedef Example<STCUserData,
14 stcInit,
15 NoOpUpdateFunc,
16 stcDraw,
17 stcShutDown> SimpleTextureCubemap;
18 } // namespace gles2_book
19 } // namespace demos
20 } // namespace gpu
21
22 int main(int argc, char *argv[]) {
23 gpu::demos::gles2_book::SimpleTextureCubemap demo;
24 CHECK(demo.Init());
25
26 demo.MainLoop();
27 return EXIT_SUCCESS;
28 }
OLDNEW
« no previous file with comments | « gpu/demos/simple_texture_2d/main.cc ('k') | gpu/demos/simple_vertex_shader/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698