Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • VTK VTK
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 733
    • Issues 733
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 202
    • Merge requests 202
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • VTK
  • VTKVTK
  • Issues
  • #616

Closed
Open
Created Feb 19, 2004 by Kitware Robot@kwrobotOwner

Flickering in HP UX

This issue was created automatically from an original Mantis Issue. Further discussion may take place here.


I compiled vtk on HP UX with java wrappers on. when I ran my application, the 3d window used to flicker hevily. Then I dug through vtk mail archive and I was told to change the SetWindowId method call to SetParentId method call. hence I changed the following lines in vtkJavaAwt.h

temp0->SetDisplayId((void *)dsi_x11->display); temp0->SetWindowId((void *)dsi_x11->drawable); temp0->SetParentId((void *)dsi_x11->display);

changed to

//temp0->SetDisplayId((void *)dsi_x11->display); // temp0->SetWindowId((void *)dsi_x11->drawable); temp0->SetParentId((void *)dsi_x11->drawable);

and recompiled vtk.

Now there is no flickering, but it has introduced a repaint problem. when my window id resized or partially overlapped by other window, the repainting does not happes. also unless I click on vtkCanvas, the mouse events are not invoked.

Assignee
Assign to
Time tracking