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 | |
alokp@chromium.org | 29cd91a | 2010-07-16 19:30:45 +0000 | [diff] [blame] | 11 | TranslatorGLSL::TranslatorGLSL(EShLanguage lang, EShSpec spec) |
| 12 | : TCompiler(lang, spec) { |
alokp@chromium.org | 76b8208 | 2010-03-24 17:59:39 +0000 | [diff] [blame] | 13 | } |
| 14 | |
alokp@chromium.org | 07620a5 | 2010-09-23 17:53:56 +0000 | [diff] [blame] | 15 | void TranslatorGLSL::translate(TIntermNode* root) { |
| 16 | TOutputGLSL outputGLSL(getInfoSink().obj); |
alokp@chromium.org | a499cfc | 2010-05-03 23:14:49 +0000 | [diff] [blame] | 17 | root->traverse(&outputGLSL); |
alokp@chromium.org | 76b8208 | 2010-03-24 17:59:39 +0000 | [diff] [blame] | 18 | } |