View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0015830VTK(No Category)public2015-11-10 07:462016-08-12 09:55
Reporternevilx 
Assigned ToKitware Robot 
PrioritynormalSeverityminorReproducibilityhave not tried
StatusclosedResolutionmoved 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version 
Summary0015830: VTK 6.3.0 OpenGL2 Texture creation unbinds texture from active texture unit.
DescriptionCurrently creation methods of vtkTextureObject call OpenGL functions in such order, that glBindTexture is called before glActiveTexture - unbinding the currently active texture. This can lead to inproper results on some frames rendered with depth peeling enabled.

Rendering\OpenGL2\vtkTextureObject.cxx file has the following two lines in its creation methods:

this->CreateTexture();
this->Activate();

Those should be replaced with:

this->Context->ActivateTexture(this);
this->CreateTexture();
this->Bind();

...or something similar.
TagsNo tags attached.
ProjectTBD
Typeincorrect functionality
Attached Files

 Relationships

  Notes
(0037432)
Kitware Robot (administrator)
2016-08-12 09:55

Resolving issue as `moved`.

This issue tracker is no longer used. Further discussion of this issue may take place in the current VTK Issues page linked in the banner at the top of this page.

 Issue History
Date Modified Username Field Change
2015-11-10 07:46 nevilx New Issue
2016-08-12 09:55 Kitware Robot Note Added: 0037432
2016-08-12 09:55 Kitware Robot Status backlog => closed
2016-08-12 09:55 Kitware Robot Resolution open => moved
2016-08-12 09:55 Kitware Robot Assigned To => Kitware Robot


Copyright © 2000 - 2018 MantisBT Team