blob: bb52ea2c29d2689f17c10a7a622104e4d3c65e9a [file] [log] [blame]
Geoff Langd08f3b32016-09-23 15:56:30 -04001//
2// Copyright 2016 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// PathNULL.cpp:
7// Implements the class methods for PathNULL.
8//
9
10#include "libANGLE/renderer/null/PathNULL.h"
11
12#include "common/debug.h"
13
14namespace rx
15{
16
17PathNULL::PathNULL() : PathImpl()
18{
19}
20
21PathNULL::~PathNULL()
22{
23}
24
25gl::Error PathNULL::setCommands(GLsizei numCommands,
26 const GLubyte *commands,
27 GLsizei numCoords,
28 GLenum coordType,
29 const void *coords)
30{
31 UNIMPLEMENTED();
32 return gl::Error(GL_INVALID_OPERATION);
33}
34
35void PathNULL::setPathParameter(GLenum pname, GLfloat value)
36{
37 UNIMPLEMENTED();
38}
39
40} // namespace rx