michael@0: // michael@0: // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: // michael@0: michael@0: #include "CompilerUniform.h" michael@0: michael@0: namespace sh michael@0: { michael@0: michael@0: Uniform::Uniform(GLenum type, GLenum precision, const char *name, int arraySize, int registerIndex) michael@0: { michael@0: this->type = type; michael@0: this->precision = precision; michael@0: this->name = name; michael@0: this->arraySize = arraySize; michael@0: this->registerIndex = registerIndex; michael@0: } michael@0: michael@0: }