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 kyewong · Sep 30, 2016 at 06:26 AM · windowspluginsscreenshotopengl

glReadPixels in native plugin shows different results for different Unity versions

Hi,

I'm trying to use glReadPixels in a native plugin to get every frame and store it into an image on Windows. The C# code(bound to a camera) is:

 IEnumerator OnPostRender()
 {
         TakeSnapshot();
         yield return null;
 }

and the C++ code of the plugin is:

 extern "C" void UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API TakeSnapshot()
 {
         cv::Mat m_ScrFrm;
     glReadPixels(0, 0, m_ScrFrm.cols, m_ScrFrm.rows, GL_BGR_EXT, GL_UNSIGNED_BYTE, m_ScrFrm.data);
         int errorcode=glGetError();
 }

in which m_ScrFrm is an opencv mat format. I have forced the program to be built with OpenGLCore.

When using Unity 5.1, I can get the image out correctly; However when I use Unity 5.3 or 5.4 build the same project and run, it fails and glGetError() returns 1282 error. I also tried to call the TakeSnapshot() function after yield return new WaitForEndOfFrame(), the same problem exists.

Has anyone met the same problem please? How to solve it?

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 kyewong · Oct 08, 2016 at 03:01 AM 0
Share

In other words, how to get the snapshot of the frame buffer for each frame in Unity5.3/4 pls?

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by amonitzer · Oct 20, 2016 at 11:03 PM

The Unity docs can help you there:

In order to do any rendering from the plugin, you should call GL.IssuePluginEvent from your script, which will cause your plugin to be called from the render thread. For example, if you call GL.IssuePluginEvent from the camera's OnPostRender function, you get a plugin callback immediately after the camera has finished rendering.

Comment
Add comment · Show 2 · Share
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 kyewong · Feb 06, 2017 at 09:50 AM 0
Share

Thank you @amonitzer . I put the native glReadPixels function in the callback of GL.IssuePluginEvent to ensure that it is called from the render thread, and it works!

avatar image irbis85 kyewong · Jul 18, 2018 at 10:10 AM 0
Share

Hi kyewong, how do you put the parameters to the glReadPixels(...)? if I try to do so GL.IssuePluginEvent(glReadPixels(0, 0, Screen.width, Screen.height, GL_RGBA, GL_UNSIGNED_BYTE, buffer), 1);, I got an error, that "Argument 1 cannot convert from void to System.Int.Ptr" Argument 1 is gl-function.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Where does Unity5 look for native plugin dependencies in the editor on Windows? 1 Answer

Standalone player -force-opengl arguments 0 Answers

Application.CaptureScreenshot() Fails on PC/Mac 2 Answers

Forcing OpenGL in Windows Editor 1 Answer

How to take screenshot of certain/all display(s) when using unity multi display (ie. 3 x display)? 0 Answers


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