alokp@chromium.org | 76b8208 | 2010-03-24 17:59:39 +0000 | [diff] [blame] | 1 | // |
| 2 | // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved. |
| 3 | // Use of this source code is governed by a BSD-style license that can be |
| 4 | // found in the LICENSE file. |
| 5 | // |
| 6 | |
daniel@transgaming.com | bbf56f7 | 2010-04-20 18:52:13 +0000 | [diff] [blame] | 7 | #include "compiler/TranslatorGLSL.h" |
| 8 | |
| 9 | #include "compiler/OutputGLSL.h" |
alokp@chromium.org | 76b8208 | 2010-03-24 17:59:39 +0000 | [diff] [blame] | 10 | |
| 11 | TranslatorGLSL::TranslatorGLSL(EShLanguage l, int dOptions) |
| 12 | : TCompiler(l), |
| 13 | debugOptions(dOptions) { |
| 14 | } |
| 15 | |
| 16 | bool TranslatorGLSL::compile(TIntermNode* root) { |
alokp@chromium.org | a499cfc | 2010-05-03 23:14:49 +0000 | [diff] [blame^] | 17 | TOutputGLSL outputGLSL(infoSink.obj); |
| 18 | root->traverse(&outputGLSL); |
alokp@chromium.org | 76b8208 | 2010-03-24 17:59:39 +0000 | [diff] [blame] | 19 | |
| 20 | return true; |
| 21 | } |