blob: 061543dd5c3775d0fb61a0558d58f2f1b61b887f [file] [log] [blame]
alokp@chromium.org76b82082010-03-24 17:59:39 +00001//
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.combbf56f72010-04-20 18:52:13 +00007#include "compiler/TranslatorGLSL.h"
8
9#include "compiler/OutputGLSL.h"
alokp@chromium.org76b82082010-03-24 17:59:39 +000010
11TranslatorGLSL::TranslatorGLSL(EShLanguage l, int dOptions)
12 : TCompiler(l),
13 debugOptions(dOptions) {
14}
15
16bool TranslatorGLSL::compile(TIntermNode* root) {
17 TParseContext& parseContext = *GetGlobalParseContext();
18 TOutputGLSL outputGLSL(parseContext);
19 outputGLSL.header();
20 parseContext.treeRoot->traverse(&outputGLSL);
21
22 return true;
23}