blob: a5877f69dc5f7a0c443954a99bfbc0d92fd8bbc0 [file] [log] [blame]
Geoff Langf9a6f082015-01-22 13:32:49 -05001//
2// Copyright 2015 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
7// RenderbufferGL.cpp: Implements the class methods for RenderbufferGL.
8
9#include "libANGLE/renderer/gl/RenderbufferGL.h"
10
11#include "common/debug.h"
Geoff Langa4903b72015-03-02 16:02:48 -080012#include "libANGLE/Caps.h"
Geoff Langcd69f1c2015-03-18 14:33:23 -040013#include "libANGLE/angletypes.h"
14#include "libANGLE/renderer/gl/FunctionsGL.h"
15#include "libANGLE/renderer/gl/StateManagerGL.h"
Geoff Langfd216c42015-05-27 16:12:30 -040016#include "libANGLE/renderer/gl/formatutilsgl.h"
Geoff Langa4903b72015-03-02 16:02:48 -080017#include "libANGLE/renderer/gl/renderergl_utils.h"
Geoff Langf9a6f082015-01-22 13:32:49 -050018
19namespace rx
20{
21
Geoff Langa4903b72015-03-02 16:02:48 -080022RenderbufferGL::RenderbufferGL(const FunctionsGL *functions, StateManagerGL *stateManager, const gl::TextureCapsMap &textureCaps)
Geoff Langcd69f1c2015-03-18 14:33:23 -040023 : RenderbufferImpl(),
24 mFunctions(functions),
25 mStateManager(stateManager),
Geoff Langa4903b72015-03-02 16:02:48 -080026 mTextureCaps(textureCaps),
Geoff Langcd69f1c2015-03-18 14:33:23 -040027 mRenderbufferID(0)
28{
29 mFunctions->genRenderbuffers(1, &mRenderbufferID);
Geoff Langbf6f48f2015-05-27 13:54:39 -040030 mStateManager->bindRenderbuffer(GL_RENDERBUFFER, mRenderbufferID);
Geoff Langcd69f1c2015-03-18 14:33:23 -040031}
Geoff Langf9a6f082015-01-22 13:32:49 -050032
33RenderbufferGL::~RenderbufferGL()
Geoff Langcd69f1c2015-03-18 14:33:23 -040034{
Geoff Lang1eb708e2015-05-04 14:58:23 -040035 mStateManager->deleteRenderbuffer(mRenderbufferID);
36 mRenderbufferID = 0;
Geoff Langcd69f1c2015-03-18 14:33:23 -040037}
Geoff Langf9a6f082015-01-22 13:32:49 -050038
Geoff Langa08e1bd2015-03-24 10:17:18 -040039gl::Error RenderbufferGL::setStorage(GLenum internalformat, size_t width, size_t height)
40{
Geoff Langcd69f1c2015-03-18 14:33:23 -040041 mStateManager->bindRenderbuffer(GL_RENDERBUFFER, mRenderbufferID);
Geoff Langfd216c42015-05-27 16:12:30 -040042
43 const nativegl::InternalFormat &nativeInternalFormatInfo = nativegl::GetInternalFormatInfo(internalformat, mFunctions->standard);
44 mFunctions->renderbufferStorage(GL_RENDERBUFFER, nativeInternalFormatInfo.internalFormat, width, height);
45
Geoff Langcd69f1c2015-03-18 14:33:23 -040046 return gl::Error(GL_NO_ERROR);
Geoff Langa08e1bd2015-03-24 10:17:18 -040047}
48
49gl::Error RenderbufferGL::setStorageMultisample(size_t samples, GLenum internalformat, size_t width, size_t height)
Geoff Langf9a6f082015-01-22 13:32:49 -050050{
Geoff Langcd69f1c2015-03-18 14:33:23 -040051 mStateManager->bindRenderbuffer(GL_RENDERBUFFER, mRenderbufferID);
Geoff Langfd216c42015-05-27 16:12:30 -040052
53 const nativegl::InternalFormat &nativeInternalFormatInfo = nativegl::GetInternalFormatInfo(internalformat, mFunctions->standard);
54 mFunctions->renderbufferStorageMultisample(GL_RENDERBUFFER, samples, nativeInternalFormatInfo.internalFormat, width, height);
Geoff Langa4903b72015-03-02 16:02:48 -080055
56 const gl::TextureCaps &formatCaps = mTextureCaps.get(internalformat);
57 if (samples > formatCaps.getMaxSamples())
58 {
59 // Before version 4.2, it is unknown if the specific internal format can support the requested number
60 // of samples. It is expected that GL_OUT_OF_MEMORY is returned if the renderbuffer cannot be created.
61 GLenum error = GL_NO_ERROR;
62 do
63 {
Geoff Lang0d318282015-04-27 15:08:09 -040064 error = mFunctions->getError();
Geoff Langa4903b72015-03-02 16:02:48 -080065 if (error == GL_OUT_OF_MEMORY)
66 {
67 return gl::Error(GL_OUT_OF_MEMORY);
68 }
69
70 ASSERT(error == GL_NO_ERROR);
71 } while (error != GL_NO_ERROR);
72 }
73
Geoff Langcd69f1c2015-03-18 14:33:23 -040074 return gl::Error(GL_NO_ERROR);
75}
76
77GLuint RenderbufferGL::getRenderbufferID() const
78{
79 return mRenderbufferID;
Geoff Langf9a6f082015-01-22 13:32:49 -050080}
81
82}