| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This example shows various stencil buffer operations. | 5 // This example shows various stencil buffer operations. |
| 6 | 6 |
| 7 #include "gpu/demos/framework/demo_factory.h" | 7 #include "gpu/demos/framework/demo_factory.h" |
| 8 #include "gpu/demos/gles2_book/example.h" | 8 #include "gpu/demos/gles2_book/example.h" |
| 9 #include "third_party/gles2_book/Chapter_11/Stencil_Test/Stencil_Test.h" | 9 #include "third_party/gles2_book/Chapter_11/Stencil_Test/Stencil_Test.h" |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } | 23 } |
| 24 }; | 24 }; |
| 25 } // namespace gles2_book | 25 } // namespace gles2_book |
| 26 | 26 |
| 27 Demo* CreateDemo() { | 27 Demo* CreateDemo() { |
| 28 return new gles2_book::StencilTest(); | 28 return new gles2_book::StencilTest(); |
| 29 } | 29 } |
| 30 | 30 |
| 31 } // namespace demos | 31 } // namespace demos |
| 32 } // namespace gpu | 32 } // namespace gpu |
| OLD | NEW |