summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/Compiler.cpp
blob: 7d0efea220e27090c09be54c92f10492416c2656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// Compiler.cpp: implements the gl::Compiler class.

#include "libANGLE/Compiler.h"
#include "libANGLE/renderer/CompilerImpl.h"

#include "common/debug.h"

namespace gl
{

Compiler::Compiler(rx::CompilerImpl *impl)
    : mCompiler(impl)
{
    ASSERT(mCompiler);
}

Compiler::~Compiler()
{
    SafeDelete(mCompiler);
}

Error Compiler::release()
{
    return mCompiler->release();
}

rx::CompilerImpl *Compiler::getImplementation()
{
    return mCompiler;
}

}