home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyos2bin.zip / Demo / sgi / video / Vstat.py < prev    next >
Text File  |  1996-11-27  |  371b  |  24 lines

  1. #! /usr/bin/env python
  2.  
  3. # Print the value of all video parameters
  4.  
  5. import sys
  6. import sv, SV
  7.  
  8. def main():
  9.     v = sv.OpenVideo()
  10.     for name in dir(SV):
  11.         const = getattr(SV, name)
  12.         if type(const) is type(0):
  13.             sys.stdout.flush()
  14.             params = [const, 0]
  15.             try:
  16.                 v.GetParam(params)
  17.             except sv.error, msg:
  18. ##                print name, msg
  19.                 continue
  20.             print name, params
  21.  
  22. main()
  23.  
  24.