0024470: Wrong result done by General Fuse algorithm.
[occt.git] / src / OpenGl / OpenGl_ExtFBO.hxx
CommitLineData
973c2be1 1// Created on: 2014-01-26
b311480e 2// Created by: Kirill GAVRILOV
973c2be1 3// Copyright (c) 2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
973c2be1 7// This library is free software; you can redistribute it and / or modify it
8// under the terms of the GNU Lesser General Public version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
2166f0fa
SK
16#ifndef _OpenGl_ExtFBO_H__
17#define _OpenGl_ExtFBO_H__
18
5f8b738e 19#include <OpenGl_GlCore12.hxx>
2166f0fa 20
5f8b738e 21//! FBO is available on OpenGL 2.0+ hardware
2166f0fa
SK
22struct OpenGl_ExtFBO
23{
2166f0fa 24
5f8b738e 25 PFNGLGENFRAMEBUFFERSEXTPROC glGenFramebuffersEXT;
26 PFNGLDELETEFRAMEBUFFERSEXTPROC glDeleteFramebuffersEXT;
27 PFNGLBINDFRAMEBUFFEREXTPROC glBindFramebufferEXT;
28 PFNGLFRAMEBUFFERTEXTURE2DEXTPROC glFramebufferTexture2DEXT;
29 PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC glCheckFramebufferStatusEXT;
30 PFNGLGENRENDERBUFFERSEXTPROC glGenRenderbuffersEXT;
31 PFNGLDELETERENDERBUFFERSEXTPROC glDeleteRenderbuffersEXT;
32 PFNGLBINDRENDERBUFFEREXTPROC glBindRenderbufferEXT;
33 PFNGLRENDERBUFFERSTORAGEEXTPROC glRenderbufferStorageEXT;
34 PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC glFramebufferRenderbufferEXT;
1a7dfdb7 35 PFNGLGENERATEMIPMAPEXTPROC glGenerateMipmapEXT;
2166f0fa
SK
36
37};
38
39#endif // _OpenGl_ExtFBO_H__