Home
last modified time | relevance | path

Searched refs:fboID (Results 1 – 5 of 5) sorted by relevance

/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_OnScreenBuffer.cpp38 GLuint fboID; in OnScreenBuffer() local
40 glGenFramebuffers(1, &fboID); in OnScreenBuffer()
42 glBindFramebuffer(GL_FRAMEBUFFER, fboID); in OnScreenBuffer()
86 m_BackBufferObject.SetFboID( fboID ); in OnScreenBuffer()
110 GLuint fboID = m_BackBufferObject.GetFboID(); in ~OnScreenBuffer() local
111 glDeleteFramebuffers(1, &fboID); in ~OnScreenBuffer()
Dgfx_FrameBuffer.cpp110 if (description.fboID == 0) in SetDescription()
112 this->SetFboID(description.fboID); in SetDescription()
122 FrameBufferObject::SetFboID(GLuint fboID) in SetFboID() argument
124 m_Description.fboID = fboID; in SetFboID()
126 if (fboID != 0) in SetFboID()
129 m_Description.fboID, in SetFboID()
146 if ( description.fboID != 0 ) in ActivateBuffer()
148 glBindFramebuffer( GL_FRAMEBUFFER, description.fboID ); in ActivateBuffer()
Dgfx_GlImplement.cpp57 GLuint fboID, in GetFrameBufferState() argument
62 glBindFramebuffer( GL_FRAMEBUFFER, fboID ); in GetFrameBufferState()
/NW4C-1.2.23/include/nw/gfx/
Dgfx_FrameBuffer.h35 GLuint fboID; //!< フレームバッファオブジェクトのIDを指定します。 member
48 fboID = 0; in Description()
62 return m_Description.fboID; in GLuint()
85 GLuint GetFboID() const { return m_Description.fboID; } in GetFboID()
92 void SetFboID(GLuint fboID);
Dgfx_GlImplement.h68 GLuint fboID,