getdisplaysize Subroutine

public subroutine getdisplaysize(w, h)

NAME

getdisplaysize(3f) - [M_pixel] Returns the width and height of the
                     device in pixels
(LICENSE:PD)

SYNOPSIS

definition:

subroutine getdisplaysize(w, h)
real,intent(in) :: w, h

DESCRIPTION

Returns the width and height of the device in pixels in w and h
respectively.

AUTHOR

John S. Urban

LICENSE

Public Domain

Arguments

Type IntentOptional Attributes Name
real, intent(out) :: w
real, intent(out) :: h

Contents

Source Code


Source Code

subroutine getdisplaysize(w, h)

! ident_50="@(#) M_pixel getdisplaysize(3f) Returns the width and height of the device in pixels"

real,intent(out) :: w, h

   w=P_VIEWPORT_WIDTH
   h=P_VIEWPORT_HEIGHT

end subroutine getdisplaysize