Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ inqrndnms(3D) — Stardent 3.0 System Software

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

DsInqNumRenderers(3D)

DsInqRendererNames(3D)  —  Stardent Computer Inc. (\*(Dd)

NAME

DsInqRendererNames − Return a list of the names of the installed renderers

SYNOPSIS

C:

void DsInqRendererNames(names)
DtPtr names[];

Fortran:

DSQRNS(NAMES, LENGTH)
CHARACTER NAMES(∗)∗LENGTH
INTEGER∗4 LENGTH

DESCRIPTION

DsInqRendererNames returns in the array names the names of the available renderers in the current Doré System.  The length of the array names is assumed to be long enough to contain the complete list.  DsInqNumRenderers <DSQNR> returns the number of renderers and should be used to determine the necessary size of the array names.  For example:

DtPtr ∗names;
DtInt cnt;
 cnt = DsInqNumRenderers();
names = (DtPtr ∗)malloc(cnt∗sizeof(DtPtr));
DsInqRendererNames(names);

FORTRAN SPECIFIC

The parameter LENGTH specifies the length of each of the character arrays passed to DSQRNS.  Renderer names that are longer than LENGTH will be truncated to fit in the specified size. 

SEE ALSO

DsInqNumRenderers(3D)

September 29, 2021

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026