diff options
author | Adam Jackson <ajax@redhat.com> | 2014-07-08 13:37:34 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2015-07-08 16:40:57 -0400 |
commit | b5fbe9c6327fac88c09afce598238a7534521b69 (patch) | |
tree | 83ed20812ab0c6cd9932c6f6906a80bcfad1a07a /hw/xfree86/doc/ddxDesign.xml | |
parent | 70b402be2626d4f4afb02b6f5baa543262548bd7 (diff) |
xfree86: Hide some pre-randr mode validation details
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'hw/xfree86/doc/ddxDesign.xml')
-rw-r--r-- | hw/xfree86/doc/ddxDesign.xml | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/hw/xfree86/doc/ddxDesign.xml b/hw/xfree86/doc/ddxDesign.xml index 6a9de9e7f..aed77a9f0 100644 --- a/hw/xfree86/doc/ddxDesign.xml +++ b/hw/xfree86/doc/ddxDesign.xml @@ -6957,28 +6957,6 @@ use of some of these secondary mode helper functions. <blockquote><para> <programlisting> - int xf86GetNearestClock(ScrnInfoPtr scrp, int freq, Bool allowDiv2, - int *divider); - </programlisting> - <blockquote><para> - This function returns the index of the closest clock to the - frequency <parameter>freq</parameter> given (in kHz). It assumes that - the number of clocks is greater than zero. It requires that the - <structfield>numClocks</structfield> and <structfield>clock</structfield> fields of the - <structname>ScrnInfoRec</structname> are initialised. The - <structfield>allowDiv2</structfield> field determines if the clocks can be - halved. The <parameter>*divider</parameter> return value indicates - whether clock division is used when determining the clock returned. - </para> - - <para> - This function is only for non-programmable clocks. - </para> - - </blockquote></para></blockquote> - - <blockquote><para> - <programlisting> const char *xf86ModeStatusToString(ModeStatus status); </programlisting> <blockquote><para> @@ -6990,59 +6968,6 @@ use of some of these secondary mode helper functions. <blockquote><para> <programlisting> - ModeStatus xf86LookupMode(ScrnInfoPtr scrp, DisplayModePtr modep, - ClockRangePtr clockRanges, LookupModeFlags strategy); - </programlisting> - <blockquote><para> - This function takes a pointer to a mode with the name filled in, - and looks for a mode in the <structfield>modePool</structfield> list which - matches. The parameters of the matching mode are filled in to - <parameter>*modep</parameter>. The <parameter>clockRanges</parameter> and - <parameter>strategy</parameter> parameters are as for the - <function>xf86ValidateModes()</function> function above. - </para> - - <para> - This function requires the <structfield>modePool</structfield>, - <structfield>clock[]</structfield>, <structfield>numClocks</structfield> and - <structfield>progClock</structfield> fields of the <structname>ScrnInfoRec</structname> - to be initialised before being called. - </para> - - <para> - The return value is <constant>MODE_OK</constant> if a mode was found. - Otherwise it indicates why a matching mode could not be found. - </para> - - </blockquote></para></blockquote> - - <blockquote><para> - <programlisting> - ModeStatus xf86InitialCheckModeForDriver(ScrnInfoPtr scrp, - DisplayModePtr mode, ClockRangePtr clockRanges, - LookupModeFlags strategy, int maxPitch, - int virtualX, int virtualY); - </programlisting> - <blockquote><para> - This function checks the passed mode against some basic driver - constraints. Apart from the ones passed explicitly, the - <structfield>maxHValue</structfield> and <structfield>maxVValue</structfield> fields of - the <structname>ScrnInfoRec</structname> are also used. If the - <structfield>ValidMode</structfield> field of the <structname>ScrnInfoRec</structname> - is set, that function is also called to check the mode. Next, the - mode is checked against the monitor's constraints. - </para> - - <para> - If the mode is consistent with all constraints, the return value - is <constant>MODE_OK</constant>. Otherwise the return value indicates - which constraint wasn't met. - </para> - - </blockquote></para></blockquote> - - <blockquote><para> - <programlisting> void xf86DeleteMode(DisplayModePtr *modeList, DisplayModePtr mode); </programlisting> <blockquote><para> |