How to draw transparent background in webGL on canvas
up vote
-1
down vote
favorite
https://codepen.io/anon/pen/zMRjwv
In that page, I want to draw a transparent background but it's not working when I use gl.clearColor(0, 0, 0, 0)
.
const gl = canvas.getContext('webgl', {alpha: false});
Set alpha:false
is also can't because 2D context
attributes: alpha: Boolean that indicates if the canvas contains an alpha channel.
If set to false, the browser will knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.WebGL
context.
attributes:
alpha: Boolean that indicates if the canvas contains an alpha buffer.
css webgl shader
|
show 1 more comment
up vote
-1
down vote
favorite
https://codepen.io/anon/pen/zMRjwv
In that page, I want to draw a transparent background but it's not working when I use gl.clearColor(0, 0, 0, 0)
.
const gl = canvas.getContext('webgl', {alpha: false});
Set alpha:false
is also can't because 2D context
attributes: alpha: Boolean that indicates if the canvas contains an alpha channel.
If set to false, the browser will knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.WebGL
context.
attributes:
alpha: Boolean that indicates if the canvas contains an alpha buffer.
css webgl shader
1
Tried to make sense of the original question and improve it.
– Nic3500
Nov 22 at 3:40
1
I'm sorry but 1,000 lines of code are not a Minimal, Complete, and Verifiable example
– Alon Eitan
Nov 22 at 5:56
I'm sorry I just want to draw transparent background or 2d imge in webgl 3D.
– 包青天
Nov 22 at 6:02
A lot of answers tell me set gl.clearColor(0, 0, 0, 0). const gl = canvas.getContext('webgl', {alpha: false});But that's wrong.
– 包青天
Nov 22 at 6:04
You can't have a transparent background with alpha:false.. Alpha:false = 100% opaque period.
– gman
Nov 22 at 6:05
|
show 1 more comment
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
https://codepen.io/anon/pen/zMRjwv
In that page, I want to draw a transparent background but it's not working when I use gl.clearColor(0, 0, 0, 0)
.
const gl = canvas.getContext('webgl', {alpha: false});
Set alpha:false
is also can't because 2D context
attributes: alpha: Boolean that indicates if the canvas contains an alpha channel.
If set to false, the browser will knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.WebGL
context.
attributes:
alpha: Boolean that indicates if the canvas contains an alpha buffer.
css webgl shader
https://codepen.io/anon/pen/zMRjwv
In that page, I want to draw a transparent background but it's not working when I use gl.clearColor(0, 0, 0, 0)
.
const gl = canvas.getContext('webgl', {alpha: false});
Set alpha:false
is also can't because 2D context
attributes: alpha: Boolean that indicates if the canvas contains an alpha channel.
If set to false, the browser will knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.WebGL
context.
attributes:
alpha: Boolean that indicates if the canvas contains an alpha buffer.
css webgl shader
css webgl shader
edited Nov 22 at 16:05
Skynet
4,24452640
4,24452640
asked Nov 22 at 2:05
包青天
32
32
1
Tried to make sense of the original question and improve it.
– Nic3500
Nov 22 at 3:40
1
I'm sorry but 1,000 lines of code are not a Minimal, Complete, and Verifiable example
– Alon Eitan
Nov 22 at 5:56
I'm sorry I just want to draw transparent background or 2d imge in webgl 3D.
– 包青天
Nov 22 at 6:02
A lot of answers tell me set gl.clearColor(0, 0, 0, 0). const gl = canvas.getContext('webgl', {alpha: false});But that's wrong.
– 包青天
Nov 22 at 6:04
You can't have a transparent background with alpha:false.. Alpha:false = 100% opaque period.
– gman
Nov 22 at 6:05
|
show 1 more comment
1
Tried to make sense of the original question and improve it.
– Nic3500
Nov 22 at 3:40
1
I'm sorry but 1,000 lines of code are not a Minimal, Complete, and Verifiable example
– Alon Eitan
Nov 22 at 5:56
I'm sorry I just want to draw transparent background or 2d imge in webgl 3D.
– 包青天
Nov 22 at 6:02
A lot of answers tell me set gl.clearColor(0, 0, 0, 0). const gl = canvas.getContext('webgl', {alpha: false});But that's wrong.
– 包青天
Nov 22 at 6:04
You can't have a transparent background with alpha:false.. Alpha:false = 100% opaque period.
– gman
Nov 22 at 6:05
1
1
Tried to make sense of the original question and improve it.
– Nic3500
Nov 22 at 3:40
Tried to make sense of the original question and improve it.
– Nic3500
Nov 22 at 3:40
1
1
I'm sorry but 1,000 lines of code are not a Minimal, Complete, and Verifiable example
– Alon Eitan
Nov 22 at 5:56
I'm sorry but 1,000 lines of code are not a Minimal, Complete, and Verifiable example
– Alon Eitan
Nov 22 at 5:56
I'm sorry I just want to draw transparent background or 2d imge in webgl 3D.
– 包青天
Nov 22 at 6:02
I'm sorry I just want to draw transparent background or 2d imge in webgl 3D.
– 包青天
Nov 22 at 6:02
A lot of answers tell me set gl.clearColor(0, 0, 0, 0). const gl = canvas.getContext('webgl', {alpha: false});But that's wrong.
– 包青天
Nov 22 at 6:04
A lot of answers tell me set gl.clearColor(0, 0, 0, 0). const gl = canvas.getContext('webgl', {alpha: false});But that's wrong.
– 包青天
Nov 22 at 6:04
You can't have a transparent background with alpha:false.. Alpha:false = 100% opaque period.
– gman
Nov 22 at 6:05
You can't have a transparent background with alpha:false.. Alpha:false = 100% opaque period.
– gman
Nov 22 at 6:05
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
The issue with the sample you linked to is that the sample itself is not transparent. It draw a background, then it draws sakura petals, then it applies a glow shader to give the petals a glow. This generates an opaque image so setting the canvas alpha to true (or not setting it all) won't make a difference.
To make it transparent comment out the following lines and change the background color
// gl.bindFramebuffer(gl.FRAMEBUFFER, renderSpec.mainRT.frameBuffer);
// gl.viewport(0, 0, renderSpec.mainRT.width, renderSpec.mainRT.height);
gl.clearColor(0, 0, 0, 0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
// renderBackground();
renderPointFlowers();
// renderPostProcess();
You can then possibly adjust the petal brightness changing this line
col *= mix(0.8, 1.0, pow(abs(coord.x), 0.3));
to this for example
col *= mix(1.8, 3.0, pow(abs(coord.x), 0.3));
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
The issue with the sample you linked to is that the sample itself is not transparent. It draw a background, then it draws sakura petals, then it applies a glow shader to give the petals a glow. This generates an opaque image so setting the canvas alpha to true (or not setting it all) won't make a difference.
To make it transparent comment out the following lines and change the background color
// gl.bindFramebuffer(gl.FRAMEBUFFER, renderSpec.mainRT.frameBuffer);
// gl.viewport(0, 0, renderSpec.mainRT.width, renderSpec.mainRT.height);
gl.clearColor(0, 0, 0, 0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
// renderBackground();
renderPointFlowers();
// renderPostProcess();
You can then possibly adjust the petal brightness changing this line
col *= mix(0.8, 1.0, pow(abs(coord.x), 0.3));
to this for example
col *= mix(1.8, 3.0, pow(abs(coord.x), 0.3));
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
add a comment |
up vote
1
down vote
accepted
The issue with the sample you linked to is that the sample itself is not transparent. It draw a background, then it draws sakura petals, then it applies a glow shader to give the petals a glow. This generates an opaque image so setting the canvas alpha to true (or not setting it all) won't make a difference.
To make it transparent comment out the following lines and change the background color
// gl.bindFramebuffer(gl.FRAMEBUFFER, renderSpec.mainRT.frameBuffer);
// gl.viewport(0, 0, renderSpec.mainRT.width, renderSpec.mainRT.height);
gl.clearColor(0, 0, 0, 0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
// renderBackground();
renderPointFlowers();
// renderPostProcess();
You can then possibly adjust the petal brightness changing this line
col *= mix(0.8, 1.0, pow(abs(coord.x), 0.3));
to this for example
col *= mix(1.8, 3.0, pow(abs(coord.x), 0.3));
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
The issue with the sample you linked to is that the sample itself is not transparent. It draw a background, then it draws sakura petals, then it applies a glow shader to give the petals a glow. This generates an opaque image so setting the canvas alpha to true (or not setting it all) won't make a difference.
To make it transparent comment out the following lines and change the background color
// gl.bindFramebuffer(gl.FRAMEBUFFER, renderSpec.mainRT.frameBuffer);
// gl.viewport(0, 0, renderSpec.mainRT.width, renderSpec.mainRT.height);
gl.clearColor(0, 0, 0, 0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
// renderBackground();
renderPointFlowers();
// renderPostProcess();
You can then possibly adjust the petal brightness changing this line
col *= mix(0.8, 1.0, pow(abs(coord.x), 0.3));
to this for example
col *= mix(1.8, 3.0, pow(abs(coord.x), 0.3));
The issue with the sample you linked to is that the sample itself is not transparent. It draw a background, then it draws sakura petals, then it applies a glow shader to give the petals a glow. This generates an opaque image so setting the canvas alpha to true (or not setting it all) won't make a difference.
To make it transparent comment out the following lines and change the background color
// gl.bindFramebuffer(gl.FRAMEBUFFER, renderSpec.mainRT.frameBuffer);
// gl.viewport(0, 0, renderSpec.mainRT.width, renderSpec.mainRT.height);
gl.clearColor(0, 0, 0, 0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
// renderBackground();
renderPointFlowers();
// renderPostProcess();
You can then possibly adjust the petal brightness changing this line
col *= mix(0.8, 1.0, pow(abs(coord.x), 0.3));
to this for example
col *= mix(1.8, 3.0, pow(abs(coord.x), 0.3));
edited Nov 22 at 9:14
Temani Afif
60.9k93572
60.9k93572
answered Nov 22 at 7:22
gman
45.6k17109194
45.6k17109194
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
add a comment |
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
Problem solved.Thank you very much.And apologize for my actions.I asked for an example of nearly a 1000 lines of code.I'm so sorry and grateful.
– 包青天
Nov 22 at 7:30
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%2f53422916%2fhow-to-draw-transparent-background-in-webgl-on-canvas%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
1
Tried to make sense of the original question and improve it.
– Nic3500
Nov 22 at 3:40
1
I'm sorry but 1,000 lines of code are not a Minimal, Complete, and Verifiable example
– Alon Eitan
Nov 22 at 5:56
I'm sorry I just want to draw transparent background or 2d imge in webgl 3D.
– 包青天
Nov 22 at 6:02
A lot of answers tell me set gl.clearColor(0, 0, 0, 0). const gl = canvas.getContext('webgl', {alpha: false});But that's wrong.
– 包青天
Nov 22 at 6:04
You can't have a transparent background with alpha:false.. Alpha:false = 100% opaque period.
– gman
Nov 22 at 6:05