Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
506e6049
There was an error fetching the commit references. Please try again later.
Commit
506e6049
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
added external framebuffer GL handles
parent
6f7fd741
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/video_core/src/renderer_opengl/renderer_opengl.h
+11
-2
11 additions, 2 deletions
src/video_core/src/renderer_opengl/renderer_opengl.h
with
11 additions
and
2 deletions
src/video_core/src/renderer_opengl/renderer_opengl.h
+
11
−
2
View file @
506e6049
...
@@ -128,11 +128,20 @@ private:
...
@@ -128,11 +128,20 @@ private:
int
resolution_width_
;
int
resolution_width_
;
int
resolution_height_
;
int
resolution_height_
;
//
Framebuffer object(s)
//
Render buffers
// --------------
-------
// --------------
GLuint
fbo_rbo_
[
kMaxFramebuffers
];
///< Render buffer objects
GLuint
fbo_rbo_
[
kMaxFramebuffers
];
///< Render buffer objects
GLuint
fbo_depth_buffers_
[
kMaxFramebuffers
];
///< Depth buffers objects
GLuint
fbo_depth_buffers_
[
kMaxFramebuffers
];
///< Depth buffers objects
// External framebuffers
// ---------------------
GLuint
xfb_texture_top_
;
///< GL handle to top framebuffer texture
GLuint
xfb_texture_bottom_
;
///< GL handle to bottom framebuffer texture
GLuint
xfb_top_
;
GLuint
xfb_bottom_
;
DISALLOW_COPY_AND_ASSIGN
(
RendererOpenGL
);
DISALLOW_COPY_AND_ASSIGN
(
RendererOpenGL
);
};
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment