Hash :
f9a6f084
Author :
Date :
2015-01-22T13:32:49
Add GL and WGL renderer stubs. BUG=angle:890 Change-Id: I64f2a72b4a350f95acc2ca7080fea1a308422ca4 Reviewed-on: https://chromium-review.googlesource.com/242573 Reviewed-by: Kenneth Russell <kbr@chromium.org> Reviewed-by: Brandon Jones <bajones@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>
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 39 40 41 42 43 44 45 46 47
//
// Copyright 2015 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.
//
// DefaultAttachmentGL.cpp: Implements the class methods for DefaultAttachmentGL.
#include "libANGLE/renderer/gl/DefaultAttachmentGL.h"
#include "common/debug.h"
namespace rx
{
DefaultAttachmentGL::DefaultAttachmentGL()
: DefaultAttachmentImpl()
{}
DefaultAttachmentGL::~DefaultAttachmentGL()
{}
GLsizei DefaultAttachmentGL::getWidth() const
{
UNIMPLEMENTED();
return GLsizei();
}
GLsizei DefaultAttachmentGL::getHeight() const
{
UNIMPLEMENTED();
return GLsizei();
}
GLenum DefaultAttachmentGL::getInternalFormat() const
{
UNIMPLEMENTED();
return GLenum();
}
GLsizei DefaultAttachmentGL::getSamples() const
{
UNIMPLEMENTED();
return GLsizei();
}
}