SDL_RenderSetViewport takes all drawn objects
Im creating an viewport on the superior right corner, where i render an image. but i end up rendering all objects that i draw on that viewport instead of the rest of the screen. in this case i have drawn a triangle.
this is the code:
window
Window::Window (const std::string &title, int width, int height): title(title),width(width),height(height){closed=!init();}
bool Window::init(){
window=SDL_CreateWindow(title.c_str(),SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,width,height,0);
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED);
}
void Window::clear() const{
SDL_RenderPresent(renderer);
SDL_SetRenderDrawColor(renderer,0,0,200,255);
SDL_RenderClear(renderer);
}
the draw code:
Draw::Draw(int w,int h,int x,int y,int r,int g,int b,int a):w(w),h(h),x(x),y(y),r(r),g(g),b(b),a(a){}
Draw::Draw(int w,int h,int x,int y,const std::string &image):w(w),h(h),x(x),y(y){
auto surface = IMG_Load(image.c_str());
texture=SDL_CreateTextureFromSurface(Window::renderer,surface);
SDL_FreeSurface(surface);
}
void Draw::drawline() const{
SDL_SetRenderDrawColor(Window::renderer,r,g,b,a);
SDL_RenderDrawLine(Window::renderer,x,y,w,h);
}
void Draw::drawviewport() {
SDL_Rect viewport ={x,y,w,h};
SDL_RenderSetViewport(Window::renderer, &viewport );
SDL_RenderCopy( Window::renderer, texture, NULL, NULL );
SDL_RenderSetViewport(Window::renderer, NULL );
}
main code:
Window window("test SDL 1", 1920, 1080);
Draw rs(960,550,960,0,"deposit/sdl.jpg");
Draw linha1(0,400,200,200,255,255,0,0);
Draw linha2(400,400,200,200,255,255,0,0);
Draw linha3(400,400,0,400,255,255,0,0);
while(!window.isClosed()){
rs.drawviewport();
linha1.drawline();
linha2.drawline();
linha3.drawline();
window.clear();
}
c++ c++14 sdl sdl-2
add a comment |
Im creating an viewport on the superior right corner, where i render an image. but i end up rendering all objects that i draw on that viewport instead of the rest of the screen. in this case i have drawn a triangle.
this is the code:
window
Window::Window (const std::string &title, int width, int height): title(title),width(width),height(height){closed=!init();}
bool Window::init(){
window=SDL_CreateWindow(title.c_str(),SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,width,height,0);
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED);
}
void Window::clear() const{
SDL_RenderPresent(renderer);
SDL_SetRenderDrawColor(renderer,0,0,200,255);
SDL_RenderClear(renderer);
}
the draw code:
Draw::Draw(int w,int h,int x,int y,int r,int g,int b,int a):w(w),h(h),x(x),y(y),r(r),g(g),b(b),a(a){}
Draw::Draw(int w,int h,int x,int y,const std::string &image):w(w),h(h),x(x),y(y){
auto surface = IMG_Load(image.c_str());
texture=SDL_CreateTextureFromSurface(Window::renderer,surface);
SDL_FreeSurface(surface);
}
void Draw::drawline() const{
SDL_SetRenderDrawColor(Window::renderer,r,g,b,a);
SDL_RenderDrawLine(Window::renderer,x,y,w,h);
}
void Draw::drawviewport() {
SDL_Rect viewport ={x,y,w,h};
SDL_RenderSetViewport(Window::renderer, &viewport );
SDL_RenderCopy( Window::renderer, texture, NULL, NULL );
SDL_RenderSetViewport(Window::renderer, NULL );
}
main code:
Window window("test SDL 1", 1920, 1080);
Draw rs(960,550,960,0,"deposit/sdl.jpg");
Draw linha1(0,400,200,200,255,255,0,0);
Draw linha2(400,400,200,200,255,255,0,0);
Draw linha3(400,400,0,400,255,255,0,0);
while(!window.isClosed()){
rs.drawviewport();
linha1.drawline();
linha2.drawline();
linha3.drawline();
window.clear();
}
c++ c++14 sdl sdl-2
2
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with singleRenderCopywith your "viewport" structure as destination rectangle.
– keltar
Nov 19 '18 at 5:26
@ keltar i have added that line and it now works. thanks!! I have also edited he first post to add the line.
– Adato
Nov 19 '18 at 17:44
add a comment |
Im creating an viewport on the superior right corner, where i render an image. but i end up rendering all objects that i draw on that viewport instead of the rest of the screen. in this case i have drawn a triangle.
this is the code:
window
Window::Window (const std::string &title, int width, int height): title(title),width(width),height(height){closed=!init();}
bool Window::init(){
window=SDL_CreateWindow(title.c_str(),SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,width,height,0);
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED);
}
void Window::clear() const{
SDL_RenderPresent(renderer);
SDL_SetRenderDrawColor(renderer,0,0,200,255);
SDL_RenderClear(renderer);
}
the draw code:
Draw::Draw(int w,int h,int x,int y,int r,int g,int b,int a):w(w),h(h),x(x),y(y),r(r),g(g),b(b),a(a){}
Draw::Draw(int w,int h,int x,int y,const std::string &image):w(w),h(h),x(x),y(y){
auto surface = IMG_Load(image.c_str());
texture=SDL_CreateTextureFromSurface(Window::renderer,surface);
SDL_FreeSurface(surface);
}
void Draw::drawline() const{
SDL_SetRenderDrawColor(Window::renderer,r,g,b,a);
SDL_RenderDrawLine(Window::renderer,x,y,w,h);
}
void Draw::drawviewport() {
SDL_Rect viewport ={x,y,w,h};
SDL_RenderSetViewport(Window::renderer, &viewport );
SDL_RenderCopy( Window::renderer, texture, NULL, NULL );
SDL_RenderSetViewport(Window::renderer, NULL );
}
main code:
Window window("test SDL 1", 1920, 1080);
Draw rs(960,550,960,0,"deposit/sdl.jpg");
Draw linha1(0,400,200,200,255,255,0,0);
Draw linha2(400,400,200,200,255,255,0,0);
Draw linha3(400,400,0,400,255,255,0,0);
while(!window.isClosed()){
rs.drawviewport();
linha1.drawline();
linha2.drawline();
linha3.drawline();
window.clear();
}
c++ c++14 sdl sdl-2
Im creating an viewport on the superior right corner, where i render an image. but i end up rendering all objects that i draw on that viewport instead of the rest of the screen. in this case i have drawn a triangle.
this is the code:
window
Window::Window (const std::string &title, int width, int height): title(title),width(width),height(height){closed=!init();}
bool Window::init(){
window=SDL_CreateWindow(title.c_str(),SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,width,height,0);
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED);
}
void Window::clear() const{
SDL_RenderPresent(renderer);
SDL_SetRenderDrawColor(renderer,0,0,200,255);
SDL_RenderClear(renderer);
}
the draw code:
Draw::Draw(int w,int h,int x,int y,int r,int g,int b,int a):w(w),h(h),x(x),y(y),r(r),g(g),b(b),a(a){}
Draw::Draw(int w,int h,int x,int y,const std::string &image):w(w),h(h),x(x),y(y){
auto surface = IMG_Load(image.c_str());
texture=SDL_CreateTextureFromSurface(Window::renderer,surface);
SDL_FreeSurface(surface);
}
void Draw::drawline() const{
SDL_SetRenderDrawColor(Window::renderer,r,g,b,a);
SDL_RenderDrawLine(Window::renderer,x,y,w,h);
}
void Draw::drawviewport() {
SDL_Rect viewport ={x,y,w,h};
SDL_RenderSetViewport(Window::renderer, &viewport );
SDL_RenderCopy( Window::renderer, texture, NULL, NULL );
SDL_RenderSetViewport(Window::renderer, NULL );
}
main code:
Window window("test SDL 1", 1920, 1080);
Draw rs(960,550,960,0,"deposit/sdl.jpg");
Draw linha1(0,400,200,200,255,255,0,0);
Draw linha2(400,400,200,200,255,255,0,0);
Draw linha3(400,400,0,400,255,255,0,0);
while(!window.isClosed()){
rs.drawviewport();
linha1.drawline();
linha2.drawline();
linha3.drawline();
window.clear();
}
c++ c++14 sdl sdl-2
c++ c++14 sdl sdl-2
edited Nov 21 '18 at 0:23
genpfault
41.7k95197
41.7k95197
asked Nov 18 '18 at 21:46
Adato
10511
10511
2
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with singleRenderCopywith your "viewport" structure as destination rectangle.
– keltar
Nov 19 '18 at 5:26
@ keltar i have added that line and it now works. thanks!! I have also edited he first post to add the line.
– Adato
Nov 19 '18 at 17:44
add a comment |
2
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with singleRenderCopywith your "viewport" structure as destination rectangle.
– keltar
Nov 19 '18 at 5:26
@ keltar i have added that line and it now works. thanks!! I have also edited he first post to add the line.
– Adato
Nov 19 '18 at 17:44
2
2
You never reset viewport back to fullscreen (
SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.– keltar
Nov 19 '18 at 5:26
You never reset viewport back to fullscreen (
SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.– keltar
Nov 19 '18 at 5:26
@ keltar i have added that line and it now works. thanks!! I have also edited he first post to add the line.
– Adato
Nov 19 '18 at 17:44
@ keltar i have added that line and it now works. thanks!! I have also edited he first post to add the line.
– Adato
Nov 19 '18 at 17:44
add a comment |
1 Answer
1
active
oldest
votes
Solution by keltar:
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53365781%2fsdl-rendersetviewport-takes-all-drawn-objects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Solution by keltar:
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.
add a comment |
Solution by keltar:
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.
add a comment |
Solution by keltar:
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.
Solution by keltar:
You never reset viewport back to fullscreen (SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with single RenderCopy with your "viewport" structure as destination rectangle.
edited Dec 24 '18 at 21:58
Moritz
57.4k19131184
57.4k19131184
answered Dec 24 '18 at 13:40
Adato
10511
10511
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53365781%2fsdl-rendersetviewport-takes-all-drawn-objects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown

2
You never reset viewport back to fullscreen (
SDL_RenderSetViewport(renderer, NULL)). However at this point it is unclear why you need separate viewports at all - what's written in question better be done with singleRenderCopywith your "viewport" structure as destination rectangle.– keltar
Nov 19 '18 at 5:26
@ keltar i have added that line and it now works. thanks!! I have also edited he first post to add the line.
– Adato
Nov 19 '18 at 17:44