blob: 0fe2356eb73473cd06953c9996ed5443976b292f [file] [log] [blame]
alokp@chromium.org76b82082010-03-24 17:59:39 +00001//
zmo@google.com5601ea02011-06-10 18:23:25 +00002// Copyright (c) 2002-2011 The ANGLE Project Authors. All rights reserved.
alokp@chromium.org76b82082010-03-24 17:59:39 +00003// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7#ifndef CROSSCOMPILERGLSL_OUTPUTGLSL_H_
8#define CROSSCOMPILERGLSL_OUTPUTGLSL_H_
9
zmo@google.com5601ea02011-06-10 18:23:25 +000010#include "compiler/OutputGLSLBase.h"
alokp@chromium.org4e89d232010-05-14 19:37:21 +000011
zmo@google.com5601ea02011-06-10 18:23:25 +000012class TOutputGLSL : public TOutputGLSLBase
alokp@chromium.org76b82082010-03-24 17:59:39 +000013{
14public:
alokp@chromium.orga499cfc2010-05-03 23:14:49 +000015 TOutputGLSL(TInfoSinkBase& objSink);
alokp@chromium.org76b82082010-03-24 17:59:39 +000016
17protected:
zmo@google.com5601ea02011-06-10 18:23:25 +000018 virtual bool writeVariablePrecision(TPrecision);
alokp@chromium.org76b82082010-03-24 17:59:39 +000019};
20
21#endif // CROSSCOMPILERGLSL_OUTPUTGLSL_H_