Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by boundingbox · Sep 18, 2015 at 07:08 PM · graphicsrendertexture

Graphics.ExecuteComputeBuffer only works the first time

I am trying to execute multiple command buffers but the second one always outputs a blank texture. I have tried putting everything into a function that creates and destroys it's own command buffer but it still only works the first time the function is called. The second render texture is always blank. Any clue as to why?

 GL.LoadProjectionMatrix(GL.GetGPUProjectionMatrix(textureCamera.projectionMatrix, true));
         GL.modelview = modelToExport.transform.localToWorldMatrix * textureCamera.worldToCameraMatrix;
 
         CommandBuffer cb = new CommandBuffer();
 
         // Alpha
         cb.Clear();
         cb.ClearRenderTarget(true, true, new Color(0,0,0,0));
         VertColorUnwrapMaterial.SetInt("_AlphaOnly", 1 );
         cb.DrawRenderer(modelToExport.GetComponent<Renderer>(), VertColorUnwrapMaterial);
         Graphics.SetRenderTarget(alphaRT);
         Graphics.ExecuteCommandBuffer( cb );
 
         // Color
         cb.Clear();
         cb.ClearRenderTarget(true, true, new Color(0,0,0,0));
         VertColorUnwrapMaterial.SetInt("_AlphaOnly", 0 );
         cb.DrawRenderer(modelToExport.GetComponent<Renderer>(), VertColorUnwrapMaterial);
         Graphics.SetRenderTarget(newRT);
         Graphics.ExecuteCommandBuffer( cb );
 
         cb.Release();
         cb = null;
 
         RenderTexture.active = newRT;
         Texture2D newTex2D = new Texture2D(512, 512, TextureFormat.ARGB32, false);
         newTex2D.ReadPixels(new Rect(0, 0, newRT.width, newRT.height), 0, 0);
         newTex2D.Apply();
Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image boundingbox · Sep 21, 2015 at 09:53 AM 0
Share

Update:

If I put this is a coroutine with a yield in between executions it will work.

Graphics.Blit will also fail when Graphics.ExecuteCommandBuffer is called above it.

Graphics.Blit results with large textures have errors ( white lines/rectangle outlines) when called after Graphics.ExecuteCommandBuffer even with a yield is used.

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

dynamic hole in layer / texture / camera 0 Answers

Best way to convert particles and sprites in a single sprite at runTime 1 Answer

Modify Gbuffer Layout / Add RenderTarget 2 Answers

Set dynamic generated alpha mask on shader at runtime 0 Answers

Using Graphics.Blit with the same source and destination 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges