mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 04:54:35 +00:00
Delete remaining unintentionally added build files
This commit is contained in:
parent
8618927ef9
commit
df8349b747
@ -1,603 +0,0 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesPackage{doxygen}
|
||||
|
||||
% Packages used by this style file
|
||||
\RequirePackage{alltt}
|
||||
%%\RequirePackage{array} %% moved to refman.tex due to workaround for LaTex 2019 version and unmaintained tabu package
|
||||
\RequirePackage{calc}
|
||||
\RequirePackage{float}
|
||||
%%\RequirePackage{ifthen} %% moved to refman.tex due to workaround for LaTex 2019 version and unmaintained tabu package
|
||||
\RequirePackage{verbatim}
|
||||
\RequirePackage[table]{xcolor}
|
||||
\RequirePackage{longtable_doxygen}
|
||||
\RequirePackage{tabu_doxygen}
|
||||
\RequirePackage{fancyvrb}
|
||||
\RequirePackage{tabularx}
|
||||
\RequirePackage{multicol}
|
||||
\RequirePackage{multirow}
|
||||
\RequirePackage{hanging}
|
||||
\RequirePackage{ifpdf}
|
||||
\RequirePackage{adjustbox}
|
||||
\RequirePackage{amssymb}
|
||||
\RequirePackage{stackengine}
|
||||
\RequirePackage{enumitem}
|
||||
\RequirePackage{alphalph}
|
||||
\RequirePackage[normalem]{ulem} % for strikeout, but don't modify emphasis
|
||||
|
||||
%---------- Internal commands used in this style file ----------------
|
||||
|
||||
\newcommand{\ensurespace}[1]{%
|
||||
\begingroup%
|
||||
\setlength{\dimen@}{#1}%
|
||||
\vskip\z@\@plus\dimen@%
|
||||
\penalty -100\vskip\z@\@plus -\dimen@%
|
||||
\vskip\dimen@%
|
||||
\penalty 9999%
|
||||
\vskip -\dimen@%
|
||||
\vskip\z@skip% hide the previous |\vskip| from |\addvspace|
|
||||
\endgroup%
|
||||
}
|
||||
|
||||
\newcommand{\DoxyHorRuler}[1]{%
|
||||
\setlength{\parskip}{0ex plus 0ex minus 0ex}%
|
||||
\ifthenelse{#1=0}%
|
||||
{%
|
||||
\hrule%
|
||||
}%
|
||||
{%
|
||||
\hrulefilll%
|
||||
}%
|
||||
}
|
||||
\newcommand{\DoxyLabelFont}{}
|
||||
\newcommand{\entrylabel}[1]{%
|
||||
{%
|
||||
\parbox[b]{\labelwidth-4pt}{%
|
||||
\makebox[0pt][l]{\DoxyLabelFont#1}%
|
||||
\vspace{1.5\baselineskip}%
|
||||
}%
|
||||
}%
|
||||
}
|
||||
|
||||
\newenvironment{DoxyDesc}[1]{%
|
||||
\ensurespace{4\baselineskip}%
|
||||
\begin{list}{}{%
|
||||
\settowidth{\labelwidth}{20pt}%
|
||||
%\setlength{\parsep}{0pt}%
|
||||
\setlength{\itemsep}{0pt}%
|
||||
\setlength{\leftmargin}{\labelwidth+\labelsep}%
|
||||
\renewcommand{\makelabel}{\entrylabel}%
|
||||
}%
|
||||
\item[#1]%
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
\newsavebox{\xrefbox}
|
||||
\newlength{\xreflength}
|
||||
\newcommand{\xreflabel}[1]{%
|
||||
\sbox{\xrefbox}{#1}%
|
||||
\setlength{\xreflength}{\wd\xrefbox}%
|
||||
\ifthenelse{\xreflength>\labelwidth}{%
|
||||
\begin{minipage}{\textwidth}%
|
||||
\setlength{\parindent}{0pt}%
|
||||
\hangindent=15pt\bfseries #1\vspace{1.2\itemsep}%
|
||||
\end{minipage}%
|
||||
}{%
|
||||
\parbox[b]{\labelwidth}{\makebox[0pt][l]{\textbf{#1}}}%
|
||||
}%
|
||||
}
|
||||
|
||||
%---------- Commands used by doxygen LaTeX output generator ----------
|
||||
|
||||
% Used by <pre> ... </pre>
|
||||
\newenvironment{DoxyPre}{%
|
||||
\small%
|
||||
\begin{alltt}%
|
||||
}{%
|
||||
\end{alltt}%
|
||||
\normalsize%
|
||||
}
|
||||
% Necessary for redefining not defined characters, i.e. "Replacement Character" in tex output.
|
||||
\newlength{\CodeWidthChar}
|
||||
\newlength{\CodeHeightChar}
|
||||
\settowidth{\CodeWidthChar}{?}
|
||||
\settoheight{\CodeHeightChar}{?}
|
||||
% Necessary for hanging indent
|
||||
\newlength{\DoxyCodeWidth}
|
||||
|
||||
\newcommand\DoxyCodeLine[1]{
|
||||
\ifthenelse{\equal{\detokenize{#1}}{}}
|
||||
{
|
||||
\vspace*{\baselineskip}
|
||||
}
|
||||
{
|
||||
\hangpara{\DoxyCodeWidth}{1}{#1}\par
|
||||
}
|
||||
}
|
||||
|
||||
\newcommand\NiceSpace{%
|
||||
\discretionary{}{\kern\fontdimen2\font}{\kern\fontdimen2\font}%
|
||||
}
|
||||
|
||||
% Used by @code ... @endcode
|
||||
\newenvironment{DoxyCode}[1]{%
|
||||
\par%
|
||||
\scriptsize%
|
||||
\normalfont\ttfamily%
|
||||
\rightskip0pt plus 1fil%
|
||||
\settowidth{\DoxyCodeWidth}{000000}%
|
||||
\settowidth{\CodeWidthChar}{?}%
|
||||
\settoheight{\CodeHeightChar}{?}%
|
||||
\setlength{\parskip}{0ex plus 0ex minus 0ex}%
|
||||
\ifthenelse{\equal{#1}{0}}
|
||||
{
|
||||
{\lccode`~32 \lowercase{\global\let~}\NiceSpace}\obeyspaces%
|
||||
}
|
||||
{
|
||||
{\lccode`~32 \lowercase{\global\let~}}\obeyspaces%
|
||||
}
|
||||
|
||||
}{%
|
||||
\normalfont%
|
||||
\normalsize%
|
||||
\settowidth{\CodeWidthChar}{?}%
|
||||
\settoheight{\CodeHeightChar}{?}%
|
||||
}
|
||||
|
||||
% Redefining not defined characters, i.e. "Replacement Character" in tex output.
|
||||
\def\ucr{\adjustbox{width=\CodeWidthChar,height=\CodeHeightChar}{\stackinset{c}{}{c}{-.2pt}{%
|
||||
\textcolor{white}{\sffamily\bfseries\small ?}}{%
|
||||
\rotatebox{45}{$\blacksquare$}}}}
|
||||
|
||||
% Used by @example, @include, @includelineno and @dontinclude
|
||||
\newenvironment{DoxyCodeInclude}[1]{%
|
||||
\DoxyCode{#1}%
|
||||
}{%
|
||||
\endDoxyCode%
|
||||
}
|
||||
|
||||
% Used by @verbatim ... @endverbatim
|
||||
\newenvironment{DoxyVerb}{%
|
||||
\par%
|
||||
\footnotesize%
|
||||
\verbatim%
|
||||
}{%
|
||||
\endverbatim%
|
||||
\normalsize%
|
||||
}
|
||||
|
||||
% Used by @verbinclude
|
||||
\newenvironment{DoxyVerbInclude}{%
|
||||
\DoxyVerb%
|
||||
}{%
|
||||
\endDoxyVerb%
|
||||
}
|
||||
|
||||
% Used by numbered lists (using '-#' or <ol> ... </ol>)
|
||||
\setlistdepth{12}
|
||||
\newlist{DoxyEnumerate}{enumerate}{12}
|
||||
\setlist[DoxyEnumerate,1]{label=\arabic*.}
|
||||
\setlist[DoxyEnumerate,2]{label=(\enumalphalphcnt*)}
|
||||
\setlist[DoxyEnumerate,3]{label=\roman*.}
|
||||
\setlist[DoxyEnumerate,4]{label=\enumAlphAlphcnt*.}
|
||||
\setlist[DoxyEnumerate,5]{label=\arabic*.}
|
||||
\setlist[DoxyEnumerate,6]{label=(\enumalphalphcnt*)}
|
||||
\setlist[DoxyEnumerate,7]{label=\roman*.}
|
||||
\setlist[DoxyEnumerate,8]{label=\enumAlphAlphcnt*.}
|
||||
\setlist[DoxyEnumerate,9]{label=\arabic*.}
|
||||
\setlist[DoxyEnumerate,10]{label=(\enumalphalphcnt*)}
|
||||
\setlist[DoxyEnumerate,11]{label=\roman*.}
|
||||
\setlist[DoxyEnumerate,12]{label=\enumAlphAlphcnt*.}
|
||||
|
||||
% Used by bullet lists (using '-', @li, @arg, or <ul> ... </ul>)
|
||||
\setlistdepth{12}
|
||||
\newlist{DoxyItemize}{itemize}{12}
|
||||
\setlist[DoxyItemize]{label=\textperiodcentered}
|
||||
|
||||
\setlist[DoxyItemize,1]{label=\textbullet}
|
||||
\setlist[DoxyItemize,2]{label=\normalfont\bfseries \textendash}
|
||||
\setlist[DoxyItemize,3]{label=\textasteriskcentered}
|
||||
\setlist[DoxyItemize,4]{label=\textperiodcentered}
|
||||
|
||||
% Used by description lists (using <dl> ... </dl>)
|
||||
\newenvironment{DoxyDescription}{%
|
||||
\description%
|
||||
}{%
|
||||
\enddescription%
|
||||
}
|
||||
|
||||
% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc
|
||||
% (only if caption is specified)
|
||||
\newenvironment{DoxyImage}{%
|
||||
\begin{figure}[H]%
|
||||
\centering%
|
||||
}{%
|
||||
\end{figure}%
|
||||
}
|
||||
|
||||
% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc
|
||||
% (only if no caption is specified)
|
||||
\newenvironment{DoxyImageNoCaption}{%
|
||||
\begin{center}%
|
||||
}{%
|
||||
\end{center}%
|
||||
}
|
||||
|
||||
% Used by @image
|
||||
% (only if inline is specified)
|
||||
\newenvironment{DoxyInlineImage}{%
|
||||
}{%
|
||||
}
|
||||
|
||||
% Used by @attention
|
||||
\newenvironment{DoxyAttention}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @author and @authors
|
||||
\newenvironment{DoxyAuthor}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @date
|
||||
\newenvironment{DoxyDate}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @invariant
|
||||
\newenvironment{DoxyInvariant}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @note
|
||||
\newenvironment{DoxyNote}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @post
|
||||
\newenvironment{DoxyPostcond}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @pre
|
||||
\newenvironment{DoxyPrecond}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @copyright
|
||||
\newenvironment{DoxyCopyright}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @remark
|
||||
\newenvironment{DoxyRemark}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @return and @returns
|
||||
\newenvironment{DoxyReturn}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @since
|
||||
\newenvironment{DoxySince}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @see
|
||||
\newenvironment{DoxySeeAlso}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @version
|
||||
\newenvironment{DoxyVersion}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @warning
|
||||
\newenvironment{DoxyWarning}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @par and @paragraph
|
||||
\newenvironment{DoxyParagraph}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by parameter lists
|
||||
\newenvironment{DoxyParams}[2][]{%
|
||||
\tabulinesep=1mm%
|
||||
\par%
|
||||
\ifthenelse{\equal{#1}{}}%
|
||||
{\begin{longtabu*}spread 0pt [l]{|X[-1,l]|X[-1,l]|}}% name + description
|
||||
{\ifthenelse{\equal{#1}{1}}%
|
||||
{\begin{longtabu*}spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + name + desc
|
||||
{\begin{longtabu*}spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + type + name + desc
|
||||
}
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #2}\\[1ex]%
|
||||
\hline%
|
||||
\endfirsthead%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #2}\\[1ex]%
|
||||
\hline%
|
||||
\endhead%
|
||||
}{%
|
||||
\end{longtabu*}%
|
||||
\vspace{6pt}%
|
||||
}
|
||||
|
||||
% Used for fields of simple structs
|
||||
\newenvironment{DoxyFields}[1]{%
|
||||
\tabulinesep=1mm%
|
||||
\par%
|
||||
\begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|X[-1,l]|}%
|
||||
\multicolumn{3}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endfirsthead%
|
||||
\multicolumn{3}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endhead%
|
||||
}{%
|
||||
\end{longtabu*}%
|
||||
\vspace{6pt}%
|
||||
}
|
||||
|
||||
% Used for fields simple class style enums
|
||||
\newenvironment{DoxyEnumFields}[1]{%
|
||||
\tabulinesep=1mm%
|
||||
\par%
|
||||
\begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endfirsthead%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endhead%
|
||||
}{%
|
||||
\end{longtabu*}%
|
||||
\vspace{6pt}%
|
||||
}
|
||||
|
||||
% Used for parameters within a detailed function description
|
||||
\newenvironment{DoxyParamCaption}{%
|
||||
\renewcommand{\item}[2][]{\\ \hspace*{2.0cm} ##1 {\em ##2}}%
|
||||
}{%
|
||||
}
|
||||
|
||||
% Used by return value lists
|
||||
\newenvironment{DoxyRetVals}[1]{%
|
||||
\tabulinesep=1mm%
|
||||
\par%
|
||||
\begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endfirsthead%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endhead%
|
||||
}{%
|
||||
\end{longtabu*}%
|
||||
\vspace{6pt}%
|
||||
}
|
||||
|
||||
% Used by exception lists
|
||||
\newenvironment{DoxyExceptions}[1]{%
|
||||
\tabulinesep=1mm%
|
||||
\par%
|
||||
\begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endfirsthead%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endhead%
|
||||
}{%
|
||||
\end{longtabu*}%
|
||||
\vspace{6pt}%
|
||||
}
|
||||
|
||||
% Used by template parameter lists
|
||||
\newenvironment{DoxyTemplParams}[1]{%
|
||||
\tabulinesep=1mm%
|
||||
\par%
|
||||
\begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endfirsthead%
|
||||
\multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]%
|
||||
\hline%
|
||||
\endhead%
|
||||
}{%
|
||||
\end{longtabu*}%
|
||||
\vspace{6pt}%
|
||||
}
|
||||
|
||||
% Used for member lists
|
||||
\newenvironment{DoxyCompactItemize}{%
|
||||
\begin{itemize}%
|
||||
\setlength{\itemsep}{-3pt}%
|
||||
\setlength{\parsep}{0pt}%
|
||||
\setlength{\topsep}{0pt}%
|
||||
\setlength{\partopsep}{0pt}%
|
||||
}{%
|
||||
\end{itemize}%
|
||||
}
|
||||
|
||||
% Used for member descriptions
|
||||
\newenvironment{DoxyCompactList}{%
|
||||
\begin{list}{}{%
|
||||
\setlength{\leftmargin}{0.5cm}%
|
||||
\setlength{\itemsep}{0pt}%
|
||||
\setlength{\parsep}{0pt}%
|
||||
\setlength{\topsep}{0pt}%
|
||||
\renewcommand{\makelabel}{\hfill}%
|
||||
}%
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
% Used for reference lists (@bug, @deprecated, @todo, etc.)
|
||||
\newenvironment{DoxyRefList}{%
|
||||
\begin{list}{}{%
|
||||
\setlength{\labelwidth}{10pt}%
|
||||
\setlength{\leftmargin}{\labelwidth}%
|
||||
\addtolength{\leftmargin}{\labelsep}%
|
||||
\renewcommand{\makelabel}{\xreflabel}%
|
||||
}%
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
% Used by @bug, @deprecated, @todo, etc.
|
||||
\newenvironment{DoxyRefDesc}[1]{%
|
||||
\begin{list}{}{%
|
||||
\renewcommand\makelabel[1]{\textbf{##1}}%
|
||||
\settowidth\labelwidth{\makelabel{#1}}%
|
||||
\setlength\leftmargin{\labelwidth+\labelsep}%
|
||||
}%
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
% Used by parameter lists and simple sections
|
||||
\newenvironment{Desc}
|
||||
{\begin{list}{}{%
|
||||
\settowidth{\labelwidth}{20pt}%
|
||||
\setlength{\parsep}{0pt}%
|
||||
\setlength{\itemsep}{0pt}%
|
||||
\setlength{\leftmargin}{\labelwidth+\labelsep}%
|
||||
\renewcommand{\makelabel}{\entrylabel}%
|
||||
}
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
% Used by tables
|
||||
\newcommand{\PBS}[1]{\let\temp=\\#1\let\\=\temp}%
|
||||
\newenvironment{TabularC}[1]%
|
||||
{\tabulinesep=1mm
|
||||
\begin{longtabu*}spread 0pt [c]{*#1{|X[-1]}|}}%
|
||||
{\end{longtabu*}\par}%
|
||||
|
||||
\newenvironment{TabularNC}[1]%
|
||||
{\begin{tabu}spread 0pt [l]{*#1{|X[-1]}|}}%
|
||||
{\end{tabu}\par}%
|
||||
|
||||
% Used for member group headers
|
||||
\newenvironment{Indent}{%
|
||||
\begin{list}{}{%
|
||||
\setlength{\leftmargin}{0.5cm}%
|
||||
}%
|
||||
\item[]\ignorespaces%
|
||||
}{%
|
||||
\unskip%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
% Used when hyperlinks are turned off
|
||||
\newcommand{\doxyref}[3]{%
|
||||
\textbf{#1} (\textnormal{#2}\,\pageref{#3})%
|
||||
}
|
||||
|
||||
% Used to link to a table when hyperlinks are turned on
|
||||
\newcommand{\doxytablelink}[2]{%
|
||||
\ref{#1}%
|
||||
}
|
||||
|
||||
% Used to link to a table when hyperlinks are turned off
|
||||
\newcommand{\doxytableref}[3]{%
|
||||
\ref{#3}%
|
||||
}
|
||||
|
||||
% Used by @addindex
|
||||
\newcommand{\lcurly}{\{}
|
||||
\newcommand{\rcurly}{\}}
|
||||
|
||||
% Colors used for syntax highlighting
|
||||
\definecolor{comment}{rgb}{0.5,0.0,0.0}
|
||||
\definecolor{keyword}{rgb}{0.0,0.5,0.0}
|
||||
\definecolor{keywordtype}{rgb}{0.38,0.25,0.125}
|
||||
\definecolor{keywordflow}{rgb}{0.88,0.5,0.0}
|
||||
\definecolor{preprocessor}{rgb}{0.5,0.38,0.125}
|
||||
\definecolor{stringliteral}{rgb}{0.0,0.125,0.25}
|
||||
\definecolor{charliteral}{rgb}{0.0,0.5,0.5}
|
||||
\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0}
|
||||
\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43}
|
||||
\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0}
|
||||
\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0}
|
||||
|
||||
% Color used for table heading
|
||||
\newcommand{\tableheadbgcolor}{lightgray}%
|
||||
|
||||
% Version of hypertarget with correct landing location
|
||||
\newcommand{\Hypertarget}[1]{\Hy@raisedlink{\hypertarget{#1}{}}}
|
||||
|
||||
% possibility to have sections etc. be within the margins
|
||||
% unfortunately had to copy part of book.cls and add \raggedright
|
||||
\makeatletter
|
||||
\newcommand\doxysection{\@startsection {section}{1}{\z@}%
|
||||
{-3.5ex \@plus -1ex \@minus -.2ex}%
|
||||
{2.3ex \@plus.2ex}%
|
||||
{\raggedright\normalfont\Large\bfseries}}
|
||||
\newcommand\doxysubsection{\@startsection{subsection}{2}{\z@}%
|
||||
{-3.25ex\@plus -1ex \@minus -.2ex}%
|
||||
{1.5ex \@plus .2ex}%
|
||||
{\raggedright\normalfont\large\bfseries}}
|
||||
\newcommand\doxysubsubsection{\@startsection{subsubsection}{3}{\z@}%
|
||||
{-3.25ex\@plus -1ex \@minus -.2ex}%
|
||||
{1.5ex \@plus .2ex}%
|
||||
{\raggedright\normalfont\normalsize\bfseries}}
|
||||
\newcommand\doxyparagraph{\@startsection{paragraph}{4}{\z@}%
|
||||
{3.25ex \@plus1ex \@minus.2ex}%
|
||||
{-1em}%
|
||||
{\raggedright\normalfont\normalsize\bfseries}}
|
||||
\newcommand\doxysubparagraph{\@startsection{subparagraph}{5}{\parindent}%
|
||||
{3.25ex \@plus1ex \@minus .2ex}%
|
||||
{-1em}%
|
||||
{\raggedright\normalfont\normalsize\bfseries}}
|
||||
\makeatother
|
||||
% Define caption that is also suitable in a table
|
||||
\makeatletter
|
||||
\def\doxyfigcaption{%
|
||||
\H@refstepcounter{figure}%
|
||||
\@dblarg{\@caption{figure}}}
|
||||
\makeatother
|
||||
|
||||
% Define alpha enumarative names for counters > 26
|
||||
\makeatletter
|
||||
\def\enumalphalphcnt#1{\expandafter\@enumalphalphcnt\csname c@#1\endcsname}
|
||||
\def\@enumalphalphcnt#1{\alphalph{#1}}
|
||||
\def\enumAlphAlphcnt#1{\expandafter\@enumAlphAlphcnt\csname c@#1\endcsname}
|
||||
\def\@enumAlphAlphcnt#1{\AlphAlph{#1}}
|
||||
\makeatother
|
||||
\AddEnumerateCounter{\enumalphalphcnt}{\@enumalphalphcnt}{aa}
|
||||
\AddEnumerateCounter{\enumAlphAlphcnt}{\@enumAlphAlphcnt}{AA}
|
@ -1,448 +0,0 @@
|
||||
%%
|
||||
%% This is file `longtable.sty',
|
||||
%% generated with the docstrip utility.
|
||||
%%
|
||||
%% The original source files were:
|
||||
%%
|
||||
%% longtable.dtx (with options: `package')
|
||||
%%
|
||||
%% This is a generated file.
|
||||
%%
|
||||
%% The source is maintained by the LaTeX Project team and bug
|
||||
%% reports for it can be opened at http://latex-project.org/bugs.html
|
||||
%% (but please observe conditions on bug reports sent to that address!)
|
||||
%%
|
||||
%% Copyright 1993-2016
|
||||
%% The LaTeX3 Project and any individual authors listed elsewhere
|
||||
%% in this file.
|
||||
%%
|
||||
%% This file was generated from file(s) of the Standard LaTeX `Tools Bundle'.
|
||||
%% --------------------------------------------------------------------------
|
||||
%%
|
||||
%% It may be distributed and/or modified under the
|
||||
%% conditions of the LaTeX Project Public License, either version 1.3c
|
||||
%% of this license or (at your option) any later version.
|
||||
%% The latest version of this license is in
|
||||
%% http://www.latex-project.org/lppl.txt
|
||||
%% and version 1.3c or later is part of all distributions of LaTeX
|
||||
%% version 2005/12/01 or later.
|
||||
%%
|
||||
%% This file may only be distributed together with a copy of the LaTeX
|
||||
%% `Tools Bundle'. You may however distribute the LaTeX `Tools Bundle'
|
||||
%% without such generated files.
|
||||
%%
|
||||
%% The list of all files belonging to the LaTeX `Tools Bundle' is
|
||||
%% given in the file `manifest.txt'.
|
||||
%%
|
||||
%% File: longtable.dtx Copyright (C) 1990-2001 David Carlisle
|
||||
\NeedsTeXFormat{LaTeX2e}[1995/06/01]
|
||||
\ProvidesPackage{longtable_doxygen}
|
||||
[2014/10/28 v4.11 Multi-page Table package (DPC) - frozen version for doxygen]
|
||||
\def\LT@err{\PackageError{longtable}}
|
||||
\def\LT@warn{\PackageWarning{longtable}}
|
||||
\def\LT@final@warn{%
|
||||
\AtEndDocument{%
|
||||
\LT@warn{Table \@width s have changed. Rerun LaTeX.\@gobbletwo}}%
|
||||
\global\let\LT@final@warn\relax}
|
||||
\DeclareOption{errorshow}{%
|
||||
\def\LT@warn{\PackageInfo{longtable}}}
|
||||
\DeclareOption{pausing}{%
|
||||
\def\LT@warn#1{%
|
||||
\LT@err{#1}{This is not really an error}}}
|
||||
\DeclareOption{set}{}
|
||||
\DeclareOption{final}{}
|
||||
\ProcessOptions
|
||||
\newskip\LTleft \LTleft=\fill
|
||||
\newskip\LTright \LTright=\fill
|
||||
\newskip\LTpre \LTpre=\bigskipamount
|
||||
\newskip\LTpost \LTpost=\bigskipamount
|
||||
\newcount\LTchunksize \LTchunksize=20
|
||||
\let\c@LTchunksize\LTchunksize
|
||||
\newdimen\LTcapwidth \LTcapwidth=4in
|
||||
\newbox\LT@head
|
||||
\newbox\LT@firsthead
|
||||
\newbox\LT@foot
|
||||
\newbox\LT@lastfoot
|
||||
\newcount\LT@cols
|
||||
\newcount\LT@rows
|
||||
\newcounter{LT@tables}
|
||||
\newcounter{LT@chunks}[LT@tables]
|
||||
\ifx\c@table\undefined
|
||||
\newcounter{table}
|
||||
\def\fnum@table{\tablename~\thetable}
|
||||
\fi
|
||||
\ifx\tablename\undefined
|
||||
\def\tablename{Table}
|
||||
\fi
|
||||
\newtoks\LT@p@ftn
|
||||
\mathchardef\LT@end@pen=30000
|
||||
\def\longtable{%
|
||||
\par
|
||||
\ifx\multicols\@undefined
|
||||
\else
|
||||
\ifnum\col@number>\@ne
|
||||
\@twocolumntrue
|
||||
\fi
|
||||
\fi
|
||||
\if@twocolumn
|
||||
\LT@err{longtable not in 1-column mode}\@ehc
|
||||
\fi
|
||||
\begingroup
|
||||
\@ifnextchar[\LT@array{\LT@array[x]}}
|
||||
\def\LT@array[#1]#2{%
|
||||
\refstepcounter{table}\stepcounter{LT@tables}%
|
||||
\if l#1%
|
||||
\LTleft\z@ \LTright\fill
|
||||
\else\if r#1%
|
||||
\LTleft\fill \LTright\z@
|
||||
\else\if c#1%
|
||||
\LTleft\fill \LTright\fill
|
||||
\fi\fi\fi
|
||||
\let\LT@mcol\multicolumn
|
||||
\let\LT@@tabarray\@tabarray
|
||||
\let\LT@@hl\hline
|
||||
\def\@tabarray{%
|
||||
\let\hline\LT@@hl
|
||||
\LT@@tabarray}%
|
||||
\let\\\LT@tabularcr\let\tabularnewline\\%
|
||||
\def\newpage{\noalign{\break}}%
|
||||
\def\pagebreak{\noalign{\ifnum`}=0\fi\@testopt{\LT@no@pgbk-}4}%
|
||||
\def\nopagebreak{\noalign{\ifnum`}=0\fi\@testopt\LT@no@pgbk4}%
|
||||
\let\hline\LT@hline \let\kill\LT@kill\let\caption\LT@caption
|
||||
\@tempdima\ht\strutbox
|
||||
\let\@endpbox\LT@endpbox
|
||||
\ifx\extrarowheight\@undefined
|
||||
\let\@acol\@tabacol
|
||||
\let\@classz\@tabclassz \let\@classiv\@tabclassiv
|
||||
\def\@startpbox{\vtop\LT@startpbox}%
|
||||
\let\@@startpbox\@startpbox
|
||||
\let\@@endpbox\@endpbox
|
||||
\let\LT@LL@FM@cr\@tabularcr
|
||||
\else
|
||||
\advance\@tempdima\extrarowheight
|
||||
\col@sep\tabcolsep
|
||||
\let\@startpbox\LT@startpbox\let\LT@LL@FM@cr\@arraycr
|
||||
\fi
|
||||
\setbox\@arstrutbox\hbox{\vrule
|
||||
\@height \arraystretch \@tempdima
|
||||
\@depth \arraystretch \dp \strutbox
|
||||
\@width \z@}%
|
||||
\let\@sharp##\let\protect\relax
|
||||
\begingroup
|
||||
\@mkpream{#2}%
|
||||
\xdef\LT@bchunk{%
|
||||
\global\advance\c@LT@chunks\@ne
|
||||
\global\LT@rows\z@\setbox\z@\vbox\bgroup
|
||||
\LT@setprevdepth
|
||||
\tabskip\LTleft \noexpand\halign to\hsize\bgroup
|
||||
\tabskip\z@ \@arstrut \@preamble \tabskip\LTright \cr}%
|
||||
\endgroup
|
||||
\expandafter\LT@nofcols\LT@bchunk&\LT@nofcols
|
||||
\LT@make@row
|
||||
\m@th\let\par\@empty
|
||||
\everycr{}\lineskip\z@\baselineskip\z@
|
||||
\LT@bchunk}
|
||||
\def\LT@no@pgbk#1[#2]{\penalty #1\@getpen{#2}\ifnum`{=0\fi}}
|
||||
\def\LT@start{%
|
||||
\let\LT@start\endgraf
|
||||
\endgraf\penalty\z@\vskip\LTpre
|
||||
\dimen@\pagetotal
|
||||
\advance\dimen@ \ht\ifvoid\LT@firsthead\LT@head\else\LT@firsthead\fi
|
||||
\advance\dimen@ \dp\ifvoid\LT@firsthead\LT@head\else\LT@firsthead\fi
|
||||
\advance\dimen@ \ht\LT@foot
|
||||
\dimen@ii\vfuzz
|
||||
\vfuzz\maxdimen
|
||||
\setbox\tw@\copy\z@
|
||||
\setbox\tw@\vsplit\tw@ to \ht\@arstrutbox
|
||||
\setbox\tw@\vbox{\unvbox\tw@}%
|
||||
\vfuzz\dimen@ii
|
||||
\advance\dimen@ \ht
|
||||
\ifdim\ht\@arstrutbox>\ht\tw@\@arstrutbox\else\tw@\fi
|
||||
\advance\dimen@\dp
|
||||
\ifdim\dp\@arstrutbox>\dp\tw@\@arstrutbox\else\tw@\fi
|
||||
\advance\dimen@ -\pagegoal
|
||||
\ifdim \dimen@>\z@\vfil\break\fi
|
||||
\global\@colroom\@colht
|
||||
\ifvoid\LT@foot\else
|
||||
\advance\vsize-\ht\LT@foot
|
||||
\global\advance\@colroom-\ht\LT@foot
|
||||
\dimen@\pagegoal\advance\dimen@-\ht\LT@foot\pagegoal\dimen@
|
||||
\maxdepth\z@
|
||||
\fi
|
||||
\ifvoid\LT@firsthead\copy\LT@head\else\box\LT@firsthead\fi\nobreak
|
||||
\output{\LT@output}}
|
||||
\def\endlongtable{%
|
||||
\crcr
|
||||
\noalign{%
|
||||
\let\LT@entry\LT@entry@chop
|
||||
\xdef\LT@save@row{\LT@save@row}}%
|
||||
\LT@echunk
|
||||
\LT@start
|
||||
\unvbox\z@
|
||||
\LT@get@widths
|
||||
\if@filesw
|
||||
{\let\LT@entry\LT@entry@write\immediate\write\@auxout{%
|
||||
\gdef\expandafter\noexpand
|
||||
\csname LT@\romannumeral\c@LT@tables\endcsname
|
||||
{\LT@save@row}}}%
|
||||
\fi
|
||||
\ifx\LT@save@row\LT@@save@row
|
||||
\else
|
||||
\LT@warn{Column \@width s have changed\MessageBreak
|
||||
in table \thetable}%
|
||||
\LT@final@warn
|
||||
\fi
|
||||
\endgraf\penalty -\LT@end@pen
|
||||
\endgroup
|
||||
\global\@mparbottom\z@
|
||||
\pagegoal\vsize
|
||||
\endgraf\penalty\z@\addvspace\LTpost
|
||||
\ifvoid\footins\else\insert\footins{}\fi}
|
||||
\def\LT@nofcols#1&{%
|
||||
\futurelet\@let@token\LT@n@fcols}
|
||||
\def\LT@n@fcols{%
|
||||
\advance\LT@cols\@ne
|
||||
\ifx\@let@token\LT@nofcols
|
||||
\expandafter\@gobble
|
||||
\else
|
||||
\expandafter\LT@nofcols
|
||||
\fi}
|
||||
\def\LT@tabularcr{%
|
||||
\relax\iffalse{\fi\ifnum0=`}\fi
|
||||
\@ifstar
|
||||
{\def\crcr{\LT@crcr\noalign{\nobreak}}\let\cr\crcr
|
||||
\LT@t@bularcr}%
|
||||
{\LT@t@bularcr}}
|
||||
\let\LT@crcr\crcr
|
||||
\let\LT@setprevdepth\relax
|
||||
\def\LT@t@bularcr{%
|
||||
\global\advance\LT@rows\@ne
|
||||
\ifnum\LT@rows=\LTchunksize
|
||||
\gdef\LT@setprevdepth{%
|
||||
\prevdepth\z@\global
|
||||
\global\let\LT@setprevdepth\relax}%
|
||||
\expandafter\LT@xtabularcr
|
||||
\else
|
||||
\ifnum0=`{}\fi
|
||||
\expandafter\LT@LL@FM@cr
|
||||
\fi}
|
||||
\def\LT@xtabularcr{%
|
||||
\@ifnextchar[\LT@argtabularcr\LT@ntabularcr}
|
||||
\def\LT@ntabularcr{%
|
||||
\ifnum0=`{}\fi
|
||||
\LT@echunk
|
||||
\LT@start
|
||||
\unvbox\z@
|
||||
\LT@get@widths
|
||||
\LT@bchunk}
|
||||
\def\LT@argtabularcr[#1]{%
|
||||
\ifnum0=`{}\fi
|
||||
\ifdim #1>\z@
|
||||
\unskip\@xargarraycr{#1}%
|
||||
\else
|
||||
\@yargarraycr{#1}%
|
||||
\fi
|
||||
\LT@echunk
|
||||
\LT@start
|
||||
\unvbox\z@
|
||||
\LT@get@widths
|
||||
\LT@bchunk}
|
||||
\def\LT@echunk{%
|
||||
\crcr\LT@save@row\cr\egroup
|
||||
\global\setbox\@ne\lastbox
|
||||
\unskip
|
||||
\egroup}
|
||||
\def\LT@entry#1#2{%
|
||||
\ifhmode\@firstofone{&}\fi\omit
|
||||
\ifnum#1=\c@LT@chunks
|
||||
\else
|
||||
\kern#2\relax
|
||||
\fi}
|
||||
\def\LT@entry@chop#1#2{%
|
||||
\noexpand\LT@entry
|
||||
{\ifnum#1>\c@LT@chunks
|
||||
1}{0pt%
|
||||
\else
|
||||
#1}{#2%
|
||||
\fi}}
|
||||
\def\LT@entry@write{%
|
||||
\noexpand\LT@entry^^J%
|
||||
\@spaces}
|
||||
\def\LT@kill{%
|
||||
\LT@echunk
|
||||
\LT@get@widths
|
||||
\expandafter\LT@rebox\LT@bchunk}
|
||||
\def\LT@rebox#1\bgroup{%
|
||||
#1\bgroup
|
||||
\unvbox\z@
|
||||
\unskip
|
||||
\setbox\z@\lastbox}
|
||||
\def\LT@blank@row{%
|
||||
\xdef\LT@save@row{\expandafter\LT@build@blank
|
||||
\romannumeral\number\LT@cols 001 }}
|
||||
\def\LT@build@blank#1{%
|
||||
\if#1m%
|
||||
\noexpand\LT@entry{1}{0pt}%
|
||||
\expandafter\LT@build@blank
|
||||
\fi}
|
||||
\def\LT@make@row{%
|
||||
\global\expandafter\let\expandafter\LT@save@row
|
||||
\csname LT@\romannumeral\c@LT@tables\endcsname
|
||||
\ifx\LT@save@row\relax
|
||||
\LT@blank@row
|
||||
\else
|
||||
{\let\LT@entry\or
|
||||
\if!%
|
||||
\ifcase\expandafter\expandafter\expandafter\LT@cols
|
||||
\expandafter\@gobble\LT@save@row
|
||||
\or
|
||||
\else
|
||||
\relax
|
||||
\fi
|
||||
!%
|
||||
\else
|
||||
\aftergroup\LT@blank@row
|
||||
\fi}%
|
||||
\fi}
|
||||
\let\setlongtables\relax
|
||||
\def\LT@get@widths{%
|
||||
\setbox\tw@\hbox{%
|
||||
\unhbox\@ne
|
||||
\let\LT@old@row\LT@save@row
|
||||
\global\let\LT@save@row\@empty
|
||||
\count@\LT@cols
|
||||
\loop
|
||||
\unskip
|
||||
\setbox\tw@\lastbox
|
||||
\ifhbox\tw@
|
||||
\LT@def@row
|
||||
\advance\count@\m@ne
|
||||
\repeat}%
|
||||
\ifx\LT@@save@row\@undefined
|
||||
\let\LT@@save@row\LT@save@row
|
||||
\fi}
|
||||
\def\LT@def@row{%
|
||||
\let\LT@entry\or
|
||||
\edef\@tempa{%
|
||||
\ifcase\expandafter\count@\LT@old@row
|
||||
\else
|
||||
{1}{0pt}%
|
||||
\fi}%
|
||||
\let\LT@entry\relax
|
||||
\xdef\LT@save@row{%
|
||||
\LT@entry
|
||||
\expandafter\LT@max@sel\@tempa
|
||||
\LT@save@row}}
|
||||
\def\LT@max@sel#1#2{%
|
||||
{\ifdim#2=\wd\tw@
|
||||
#1%
|
||||
\else
|
||||
\number\c@LT@chunks
|
||||
\fi}%
|
||||
{\the\wd\tw@}}
|
||||
\def\LT@hline{%
|
||||
\noalign{\ifnum0=`}\fi
|
||||
\penalty\@M
|
||||
\futurelet\@let@token\LT@@hline}
|
||||
\def\LT@@hline{%
|
||||
\ifx\@let@token\hline
|
||||
\global\let\@gtempa\@gobble
|
||||
\gdef\LT@sep{\penalty-\@medpenalty\vskip\doublerulesep}%
|
||||
\else
|
||||
\global\let\@gtempa\@empty
|
||||
\gdef\LT@sep{\penalty-\@lowpenalty\vskip-\arrayrulewidth}%
|
||||
\fi
|
||||
\ifnum0=`{\fi}%
|
||||
\multispan\LT@cols
|
||||
\unskip\leaders\hrule\@height\arrayrulewidth\hfill\cr
|
||||
\noalign{\LT@sep}%
|
||||
\multispan\LT@cols
|
||||
\unskip\leaders\hrule\@height\arrayrulewidth\hfill\cr
|
||||
\noalign{\penalty\@M}%
|
||||
\@gtempa}
|
||||
\def\LT@caption{%
|
||||
\noalign\bgroup
|
||||
\@ifnextchar[{\egroup\LT@c@ption\@firstofone}\LT@capti@n}
|
||||
\def\LT@c@ption#1[#2]#3{%
|
||||
\LT@makecaption#1\fnum@table{#3}%
|
||||
\def\@tempa{#2}%
|
||||
\ifx\@tempa\@empty\else
|
||||
{\let\\\space
|
||||
\addcontentsline{lot}{table}{\protect\numberline{\thetable}{#2}}}%
|
||||
\fi}
|
||||
\def\LT@capti@n{%
|
||||
\@ifstar
|
||||
{\egroup\LT@c@ption\@gobble[]}%
|
||||
{\egroup\@xdblarg{\LT@c@ption\@firstofone}}}
|
||||
\def\LT@makecaption#1#2#3{%
|
||||
\LT@mcol\LT@cols c{\hbox to\z@{\hss\parbox[t]\LTcapwidth{%
|
||||
\sbox\@tempboxa{#1{#2: }#3}%
|
||||
\ifdim\wd\@tempboxa>\hsize
|
||||
#1{#2: }#3%
|
||||
\else
|
||||
\hbox to\hsize{\hfil\box\@tempboxa\hfil}%
|
||||
\fi
|
||||
\endgraf\vskip\baselineskip}%
|
||||
\hss}}}
|
||||
\def\LT@output{%
|
||||
\ifnum\outputpenalty <-\@Mi
|
||||
\ifnum\outputpenalty > -\LT@end@pen
|
||||
\LT@err{floats and marginpars not allowed in a longtable}\@ehc
|
||||
\else
|
||||
\setbox\z@\vbox{\unvbox\@cclv}%
|
||||
\ifdim \ht\LT@lastfoot>\ht\LT@foot
|
||||
\dimen@\pagegoal
|
||||
\advance\dimen@-\ht\LT@lastfoot
|
||||
\ifdim\dimen@<\ht\z@
|
||||
\setbox\@cclv\vbox{\unvbox\z@\copy\LT@foot\vss}%
|
||||
\@makecol
|
||||
\@outputpage
|
||||
\setbox\z@\vbox{\box\LT@head}%
|
||||
\fi
|
||||
\fi
|
||||
\global\@colroom\@colht
|
||||
\global\vsize\@colht
|
||||
\vbox
|
||||
{\unvbox\z@\box\ifvoid\LT@lastfoot\LT@foot\else\LT@lastfoot\fi}%
|
||||
\fi
|
||||
\else
|
||||
\setbox\@cclv\vbox{\unvbox\@cclv\copy\LT@foot\vss}%
|
||||
\@makecol
|
||||
\@outputpage
|
||||
\global\vsize\@colroom
|
||||
\copy\LT@head\nobreak
|
||||
\fi}
|
||||
\def\LT@end@hd@ft#1{%
|
||||
\LT@echunk
|
||||
\ifx\LT@start\endgraf
|
||||
\LT@err
|
||||
{Longtable head or foot not at start of table}%
|
||||
{Increase LTchunksize}%
|
||||
\fi
|
||||
\setbox#1\box\z@
|
||||
\LT@get@widths
|
||||
\LT@bchunk}
|
||||
\def\endfirsthead{\LT@end@hd@ft\LT@firsthead}
|
||||
\def\endhead{\LT@end@hd@ft\LT@head}
|
||||
\def\endfoot{\LT@end@hd@ft\LT@foot}
|
||||
\def\endlastfoot{\LT@end@hd@ft\LT@lastfoot}
|
||||
\def\LT@startpbox#1{%
|
||||
\bgroup
|
||||
\let\@footnotetext\LT@p@ftntext
|
||||
\setlength\hsize{#1}%
|
||||
\@arrayparboxrestore
|
||||
\vrule \@height \ht\@arstrutbox \@width \z@}
|
||||
\def\LT@endpbox{%
|
||||
\@finalstrut\@arstrutbox
|
||||
\egroup
|
||||
\the\LT@p@ftn
|
||||
\global\LT@p@ftn{}%
|
||||
\hfil}
|
||||
\def\LT@p@ftntext#1{%
|
||||
\edef\@tempa{\the\LT@p@ftn\noexpand\footnotetext[\the\c@footnote]}%
|
||||
\global\LT@p@ftn\expandafter{\@tempa{#1}}}%
|
||||
|
||||
\@namedef{ver@longtable.sty}{2014/10/28 v4.11 Multi-page Table package (DPC) - frozen version for doxygen}
|
||||
\endinput
|
||||
%%
|
||||
%% End of file `longtable.sty'.
|
@ -1,263 +0,0 @@
|
||||
GLFW exists because people around the world donated their time and lent their skills. This list only includes contributions to the main repository and excludes other invaluable contributions like language bindings and text and video tutorials.
|
||||
|
||||
|
||||
\begin{DoxyItemize}
|
||||
\item Bobyshev Alexander
|
||||
\item Laurent Aphecetche
|
||||
\item Matt Arsenault
|
||||
\item Takuro Ashie
|
||||
\item ashishgamedev
|
||||
\item David Avedissian
|
||||
\item Luca Bacci
|
||||
\item Keith Bauer
|
||||
\item John Bartholomew
|
||||
\item Coşku Baş
|
||||
\item Niklas Behrens
|
||||
\item Andrew Belt
|
||||
\item Nevyn Bengtsson
|
||||
\item Niklas Bergström
|
||||
\item Denis Bernard
|
||||
\item Bi\+Bi
|
||||
\item Doug Binks
|
||||
\item blanco
|
||||
\item Waris Boonyasiriwat
|
||||
\item Kyle Brenneman
|
||||
\item Rok Breulj
|
||||
\item The\+Broken\+Rail
|
||||
\item Kai Burjack
|
||||
\item Martin Capitanio
|
||||
\item Nicolas Caramelli
|
||||
\item David Carlier
|
||||
\item Arturo Castro
|
||||
\item Chi-\/kwan Chan
|
||||
\item The\+Chocolate\+Ore
|
||||
\item Ali Chraghi
|
||||
\item Joseph Chua
|
||||
\item Ian Clarkson
|
||||
\item Michał Cichoń
|
||||
\item Lambert Clara
|
||||
\item Anna Clarke
|
||||
\item Josh Codd
|
||||
\item Yaron Cohen-\/\+Tal
|
||||
\item Omar Cornut
|
||||
\item Andrew Corrigan
|
||||
\item Bailey Cosier
|
||||
\item Noel Cower
|
||||
\item Curiouser\+Thing
|
||||
\item Jason Daly
|
||||
\item danhambleton
|
||||
\item Jarrod Davis
|
||||
\item Olivier Delannoy
|
||||
\item Paul R. Deppe
|
||||
\item Michael Dickens
|
||||
\item Роман Донченко
|
||||
\item Mario Dorn
|
||||
\item Wolfgang Draxinger
|
||||
\item Jonathan Dummer
|
||||
\item Ralph Eastwood
|
||||
\item Fredrik Ehnbom
|
||||
\item Robin Eklind
|
||||
\item Jan Ekström
|
||||
\item Siavash Eliasi
|
||||
\item Ahmad Fatoum
|
||||
\item Nikita Fediuchin
|
||||
\item Felipe Ferreira
|
||||
\item Michael Fogleman
|
||||
\item Jason Francis
|
||||
\item Gerald Franz
|
||||
\item Mário Freitas
|
||||
\item Ge\+O4d
|
||||
\item Marcus Geelnard
|
||||
\item ghuser404
|
||||
\item Charles Giessen
|
||||
\item Ryan C. Gordon
|
||||
\item Stephen Gowen
|
||||
\item Kovid Goyal
|
||||
\item Kevin Grandemange
|
||||
\item Eloi Marín Gratacós
|
||||
\item Stefan Gustavson
|
||||
\item Andrew Gutekanst
|
||||
\item Stephen Gutekanst
|
||||
\item Jonathan Hale
|
||||
\item hdf89shfdfs
|
||||
\item Sylvain Hellegouarch
|
||||
\item Björn Hempel
|
||||
\item Matthew Henry
|
||||
\item heromyth
|
||||
\item Lucas Hinderberger
|
||||
\item Paul Holden
|
||||
\item Hajime Hoshi
|
||||
\item Warren Hu
|
||||
\item Charles Huber
|
||||
\item Brent Huisman
|
||||
\item illustris
|
||||
\item In\+Kryption
|
||||
\item Intellectual\+Kitty
|
||||
\item Aaron Jacobs
|
||||
\item Jannik\+GM
|
||||
\item Andreas O. Jansen
|
||||
\item Erik S. V. Jansson
|
||||
\item jj\+YBdx4\+IL
|
||||
\item Toni Jovanoski
|
||||
\item Arseny Kapoulkine
|
||||
\item Cem Karan
|
||||
\item Osman Keskin
|
||||
\item Koray Kilinc
|
||||
\item Josh Kilmer
|
||||
\item Byunghoon Kim
|
||||
\item Cameron King
|
||||
\item Peter Knut
|
||||
\item Christoph Kubisch
|
||||
\item Yuri Kunde Schlesner
|
||||
\item Rokas Kupstys
|
||||
\item Konstantin Käfer
|
||||
\item Eric Larson
|
||||
\item Francis Lecavalier
|
||||
\item Jong Won Lee
|
||||
\item Robin Leffmann
|
||||
\item Glenn Lewis
|
||||
\item Shane Liesegang
|
||||
\item Anders Lindqvist
|
||||
\item Leon Linhart
|
||||
\item Marco Lizza
|
||||
\item Eyal Lotem
|
||||
\item Aaron Loucks
|
||||
\item Luflosi
|
||||
\item lukect
|
||||
\item Tristam Mac\+Donald
|
||||
\item Hans Mackowiak
|
||||
\item Ramiro Magno
|
||||
\item Дмитри Малышев
|
||||
\item Zbigniew Mandziejewicz
|
||||
\item Adam Marcus
|
||||
\item Célestin Marot
|
||||
\item Kyle Mc\+Donald
|
||||
\item David V. Mc\+Kay
|
||||
\item David Medlock
|
||||
\item Bryce Mehring
|
||||
\item Jonathan Mercier
|
||||
\item Marcel Metz
|
||||
\item Liam Middlebrook
|
||||
\item Ave Milia
|
||||
\item Jonathan Miller
|
||||
\item Kenneth Miller
|
||||
\item Bruce Mitchener
|
||||
\item Jack Moffitt
|
||||
\item Ravi Mohan
|
||||
\item Jeff Molofee
|
||||
\item Alexander Monakov
|
||||
\item Pierre Morel
|
||||
\item Jon Morton
|
||||
\item Pierre Moulon
|
||||
\item Martins Mozeiko
|
||||
\item Pascal Muetschard
|
||||
\item James Murphy
|
||||
\item Julian Møller
|
||||
\item ndogxj
|
||||
\item F. Nedelec
|
||||
\item n3rdopolis
|
||||
\item Kristian Nielsen
|
||||
\item Joel Niemelä
|
||||
\item Kamil Nowakowski
|
||||
\item onox
|
||||
\item Denis Ovod
|
||||
\item Ozzy
|
||||
\item Andri Pálsson
|
||||
\item luz paz
|
||||
\item Peoro
|
||||
\item Braden Pellett
|
||||
\item Christopher Pelloux
|
||||
\item Michael Pennington
|
||||
\item Arturo J. Pérez
|
||||
\item Vladimir Perminov
|
||||
\item Olivier Perret
|
||||
\item Anthony Pesch
|
||||
\item Orson Peters
|
||||
\item Emmanuel Gil Peyrot
|
||||
\item Cyril Pichard
|
||||
\item Pilzschaf
|
||||
\item Keith Pitt
|
||||
\item Stanislav Podgorskiy
|
||||
\item Konstantin Podsvirov
|
||||
\item Nathan Poirier
|
||||
\item Alexandre Pretyman
|
||||
\item Pablo Prietz
|
||||
\item przemekmirek
|
||||
\item pthom
|
||||
\item Martin Pulec
|
||||
\item Guillaume Racicot
|
||||
\item Christian Rauch
|
||||
\item Philip Rideout
|
||||
\item Eddie Ringle
|
||||
\item Max Risuhin
|
||||
\item Joe Roback
|
||||
\item Jorge Rodriguez
|
||||
\item Jari Ronkainen
|
||||
\item Luca Rood
|
||||
\item Ed Ropple
|
||||
\item Aleksey Rybalkin
|
||||
\item Mikko Rytkönen
|
||||
\item Riku Salminen
|
||||
\item Brandon Schaefer
|
||||
\item Sebastian Schuberth
|
||||
\item Christian Sdunek
|
||||
\item Matt Sealey
|
||||
\item Steve Sexton
|
||||
\item Arkady Shapkin
|
||||
\item Ali Sherief
|
||||
\item Yoshiki Shibukawa
|
||||
\item Dmitri Shuralyov
|
||||
\item Joao da Silva
|
||||
\item Daniel Sieger
|
||||
\item Daniel Skorupski
|
||||
\item Slemmie
|
||||
\item Anthony Smith
|
||||
\item Bradley Smith
|
||||
\item Cliff Smolinsky
|
||||
\item Patrick Snape
|
||||
\item Erlend Sogge Heggen
|
||||
\item Olivier Sohn
|
||||
\item Julian Squires
|
||||
\item Johannes Stein
|
||||
\item Pontus Stenetorp
|
||||
\item Michael Stocker
|
||||
\item Justin Stoecker
|
||||
\item Elviss Strazdins
|
||||
\item Paul Sultana
|
||||
\item Nathan Sweet
|
||||
\item TTK-\/\+Bandit
|
||||
\item Jared Tiala
|
||||
\item Sergey Tikhomirov
|
||||
\item Arthur Tombs
|
||||
\item Tronic\+Labs
|
||||
\item Ioannis Tsakpinis
|
||||
\item Samuli Tuomola
|
||||
\item Matthew Turner
|
||||
\item urraka
|
||||
\item Elias Vanderstuyft
|
||||
\item Stef Velzel
|
||||
\item Jari Vetoniemi
|
||||
\item Ricardo Vieira
|
||||
\item Nicholas Vitovitch
|
||||
\item Simon Voordouw
|
||||
\item Corentin Wallez
|
||||
\item Torsten Walluhn
|
||||
\item Patrick Walton
|
||||
\item Xo Wang
|
||||
\item Andre Weissflog
|
||||
\item Jay Weisskopf
|
||||
\item Frank Wille
|
||||
\item Andy Williams
|
||||
\item Joel Winarske
|
||||
\item Richard A. Wilkes
|
||||
\item Tatsuya Yatagawa
|
||||
\item Ryogo Yoshimura
|
||||
\item Lukas Zanner
|
||||
\item Andrey Zholos
|
||||
\item Aihui Zhu
|
||||
\item Santi Zupancic
|
||||
\item Jonas Ådahl
|
||||
\item Lasse Öörni
|
||||
\item Leonard König
|
||||
\item All the unmentioned and anonymous contributors in the GLFW community, for bug reports, patches, feedback, testing and encouragement
|
||||
\end{DoxyItemize}
|
@ -1,14 +0,0 @@
|
||||
Copyright (c) 2002-\/2006 Marcus Geelnard
|
||||
|
||||
Copyright (c) 2006-\/2019 Camilla Löwy
|
||||
|
||||
This software is provided \textquotesingle{}as-\/is\textquotesingle{}, without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions\+:
|
||||
|
||||
|
||||
\begin{DoxyEnumerate}
|
||||
\item The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
|
||||
\item Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
||||
\item This notice may not be removed or altered from any source distribution.
|
||||
\end{DoxyEnumerate}
|
@ -1,262 +0,0 @@
|
||||
\href{https://github.com/glfw/glfw/actions}{\texttt{ }} \href{https://ci.appveyor.com/project/elmindreda/glfw}{\texttt{ }} \href{https://scan.coverity.com/projects/glfw-glfw}{\texttt{ }}\hypertarget{md__r_e_a_d_m_e_autotoc_md2}{}\doxysection{Introduction}\label{md__r_e_a_d_m_e_autotoc_md2}
|
||||
GLFW is an Open Source, multi-\/platform library for Open\+GL, Open\+GL ES and Vulkan application development. It provides a simple, platform-\/independent API for creating windows, contexts and surfaces, reading input, handling events, etc.
|
||||
|
||||
GLFW natively supports Windows, mac\+OS and Linux and other Unix-\/like systems. On Linux both X11 and Wayland are supported.
|
||||
|
||||
GLFW is licensed under the \href{https://www.glfw.org/license.html}{\texttt{ zlib/libpng license}}.
|
||||
|
||||
You can \href{https://www.glfw.org/download.html}{\texttt{ download}} the latest stable release as source or Windows binaries, or fetch the {\ttfamily latest} branch from Git\+Hub. Each release starting with 3.\+0 also has a corresponding \href{https://github.com/glfw/glfw/releases}{\texttt{ annotated tag}} with source and binary archives.
|
||||
|
||||
The \href{https://www.glfw.org/docs/latest/}{\texttt{ documentation}} is available online and is included in all source and binary archives. See the \href{https://www.glfw.org/docs/latest/news.html}{\texttt{ release notes}} for new features, caveats and deprecations in the latest release. For more details see the \href{https://www.glfw.org/changelog.html}{\texttt{ version history}}.
|
||||
|
||||
The {\ttfamily master} branch is the stable integration branch and {\itshape should} always compile and run on all supported platforms, although details of newly added features may change until they have been included in a release. New features and many bug fixes live in \href{https://github.com/glfw/glfw/branches/all}{\texttt{ other branches}} until they are stable enough to merge.
|
||||
|
||||
If you are new to GLFW, you may find the \href{https://www.glfw.org/docs/latest/quick.html}{\texttt{ tutorial}} for GLFW 3 useful. If you have used GLFW 2 in the past, there is a \href{https://www.glfw.org/docs/latest/moving.html}{\texttt{ transition guide}} for moving to the GLFW 3 API.
|
||||
|
||||
GLFW exists because of the contributions of /\+Users/andrjans/\+Library/\+Mobile Documents/com$\sim$apple$\sim$\+Cloud\+Docs/\+Xcode projects/glfw/\+CONTRIBUTORS.\+md \char`\"{}many people\char`\"{} around the world, whether by reporting bugs, providing community support, adding features, reviewing or testing code, debugging, proofreading docs, suggesting features or fixing bugs.\hypertarget{md__r_e_a_d_m_e_autotoc_md3}{}\doxysection{Compiling GLFW}\label{md__r_e_a_d_m_e_autotoc_md3}
|
||||
GLFW itself requires only the headers and libraries for your OS and window system. It does not need the headers for any context creation API (WGL, GLX, EGL, NSGL, OSMesa) or rendering API (Open\+GL, Open\+GL ES, Vulkan) to enable support for them.
|
||||
|
||||
GLFW supports compilation on Windows with Visual C++ 2010 and later, Min\+GW and Min\+GW-\/w64, on mac\+OS with Clang and on Linux and other Unix-\/like systems with GCC and Clang. It will likely compile in other environments as well, but this is not regularly tested.
|
||||
|
||||
There are \href{https://www.glfw.org/download.html}{\texttt{ pre-\/compiled Windows binaries}} available for all supported compilers.
|
||||
|
||||
See the \href{https://www.glfw.org/docs/latest/compile.html}{\texttt{ compilation guide}} for more information about how to compile GLFW yourself.\hypertarget{md__r_e_a_d_m_e_autotoc_md4}{}\doxysection{Using GLFW}\label{md__r_e_a_d_m_e_autotoc_md4}
|
||||
See the \href{https://www.glfw.org/docs/latest/}{\texttt{ documentation}} for tutorials, guides and the API reference.\hypertarget{md__r_e_a_d_m_e_autotoc_md5}{}\doxysection{Contributing to GLFW}\label{md__r_e_a_d_m_e_autotoc_md5}
|
||||
See the \href{https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md}{\texttt{ contribution guide}} for more information.\hypertarget{md__r_e_a_d_m_e_autotoc_md6}{}\doxysection{System requirements}\label{md__r_e_a_d_m_e_autotoc_md6}
|
||||
GLFW supports Windows XP and later and mac\+OS 10.\+8 and later. Linux and other Unix-\/like systems running the X Window System are supported even without a desktop environment or modern extensions, although some features require a running window or clipboard manager. The OSMesa backend requires Mesa 6.\+3.
|
||||
|
||||
See the \href{https://www.glfw.org/docs/latest/compat.html}{\texttt{ compatibility guide}} in the documentation for more information.\hypertarget{md__r_e_a_d_m_e_autotoc_md7}{}\doxysection{Dependencies}\label{md__r_e_a_d_m_e_autotoc_md7}
|
||||
GLFW itself needs only CMake 3.\+1 or later and the headers and libraries for your OS and window system.
|
||||
|
||||
The examples and test programs depend on a number of tiny libraries. These are located in the {\ttfamily deps/} directory.
|
||||
|
||||
|
||||
\begin{DoxyItemize}
|
||||
\item \href{https://github.com/kimgr/getopt_port/}{\texttt{ getopt\+\_\+port}} for examples with command-\/line options
|
||||
\item \href{https://github.com/tinycthread/tinycthread}{\texttt{ Tiny\+CThread}} for threaded examples
|
||||
\item \href{https://github.com/Dav1dde/glad}{\texttt{ glad2}} for loading Open\+GL and Vulkan functions
|
||||
\item \href{https://github.com/datenwolf/linmath.h}{\texttt{ linmath.\+h}} for linear algebra in examples
|
||||
\item \href{https://github.com/Immediate-Mode-UI/Nuklear}{\texttt{ Nuklear}} for test and example UI
|
||||
\item \href{https://github.com/nothings/stb}{\texttt{ stb\+\_\+image\+\_\+write}} for writing images to disk
|
||||
\end{DoxyItemize}
|
||||
|
||||
The documentation is generated with \href{https://doxygen.org/}{\texttt{ Doxygen}} if CMake can find that tool.\hypertarget{md__r_e_a_d_m_e_autotoc_md8}{}\doxysection{Reporting bugs}\label{md__r_e_a_d_m_e_autotoc_md8}
|
||||
Bugs are reported to our \href{https://github.com/glfw/glfw/issues}{\texttt{ issue tracker}}. Please check the \href{https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md}{\texttt{ contribution guide}} for information on what to include when reporting a bug.\hypertarget{md__r_e_a_d_m_e_autotoc_md9}{}\doxysection{Changelog}\label{md__r_e_a_d_m_e_autotoc_md9}
|
||||
|
||||
\begin{DoxyItemize}
|
||||
\item Added {\ttfamily GLFW\+\_\+\+PLATFORM} init hint for runtime platform selection (\#1958)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+ANY\+\_\+\+PLATFORM}, {\ttfamily GLFW\+\_\+\+PLATFORM\+\_\+\+WIN32}, {\ttfamily GLFW\+\_\+\+PLATFORM\+\_\+\+COCOA}, {\ttfamily GLFW\+\_\+\+PLATFORM\+\_\+\+WAYLAND}, {\ttfamily GLFW\+\_\+\+PLATFORM\+\_\+\+X11} and {\ttfamily GLFW\+\_\+\+PLATFORM\+\_\+\+NULL} symbols to specify the desired platform (\#1958)
|
||||
\item Added {\ttfamily glfw\+Get\+Platform} function to query what platform was selected (\#1655,\#1958)
|
||||
\item Added {\ttfamily glfw\+Platform\+Supported} function to query if a platform is supported (\#1655,\#1958)
|
||||
\item Added {\ttfamily glfw\+Init\+Allocator} for setting a custom memory allocator (\#544,\#1628,\#1947)
|
||||
\item Added {\ttfamily GLFWallocator} struct and {\ttfamily GLFWallocatefun}, {\ttfamily GLFWreallocatefun} and {\ttfamily GLFWdeallocatefun} types (\#544,\#1628,\#1947)
|
||||
\item Added {\ttfamily glfw\+Init\+Vulkan\+Loader} for using a non-\/default Vulkan loader (\#1374,\#1890)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+RESIZE\+\_\+\+NWSE\+\_\+\+CURSOR}, {\ttfamily GLFW\+\_\+\+RESIZE\+\_\+\+NESW\+\_\+\+CURSOR}, {\ttfamily GLFW\+\_\+\+RESIZE\+\_\+\+ALL\+\_\+\+CURSOR} and {\ttfamily GLFW\+\_\+\+NOT\+\_\+\+ALLOWED\+\_\+\+CURSOR} cursor shapes (\#427)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+RESIZE\+\_\+\+EW\+\_\+\+CURSOR} alias for {\ttfamily GLFW\+\_\+\+HRESIZE\+\_\+\+CURSOR} (\#427)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+RESIZE\+\_\+\+NS\+\_\+\+CURSOR} alias for {\ttfamily GLFW\+\_\+\+VRESIZE\+\_\+\+CURSOR} (\#427)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+POINTING\+\_\+\+HAND\+\_\+\+CURSOR} alias for {\ttfamily GLFW\+\_\+\+HAND\+\_\+\+CURSOR} (\#427)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+MOUSE\+\_\+\+PASSTHROUGH} window hint for letting mouse input pass through the window (\#1236,\#1568)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+CURSOR\+\_\+\+CAPTURED} cursor mode to confine the cursor to the window content area (\#58)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+POSITION\+\_\+X} and {\ttfamily GLFW\+\_\+\+POSITION\+\_\+Y} window hints for initial position (\#1603,\#1747)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+ANY\+\_\+\+POSITION} hint value for letting the window manager choose (\#1603,\#1747)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+PLATFORM\+\_\+\+UNAVAILABLE} error for platform detection failures (\#1958)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+FEATURE\+\_\+\+UNAVAILABLE} error for platform limitations (\#1692)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+FEATURE\+\_\+\+UNIMPLEMENTED} error for incomplete backends (\#1692)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+WAYLAND\+\_\+\+APP\+\_\+\+ID} window hint string for Wayland app\+\_\+id selection (\#2121,\#2122)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+ANGLE\+\_\+\+PLATFORM\+\_\+\+TYPE} init hint and {\ttfamily GLFW\+\_\+\+ANGLE\+\_\+\+PLATFORM\+\_\+\+TYPE\+\_\+$\ast$} values to select ANGLE backend (\#1380)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+X11\+\_\+\+XCB\+\_\+\+VULKAN\+\_\+\+SURFACE} init hint for selecting X11 Vulkan surface extension (\#1793)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+NATIVE\+\_\+\+INCLUDE\+\_\+\+NONE} for disabling inclusion of native headers (\#1348)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+BUILD\+\_\+\+WIN32} CMake option for enabling Win32 support (\#1958)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+BUILD\+\_\+\+COCOA} CMake option for enabling Cocoa support (\#1958)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+BUILD\+\_\+\+X11} CMake option for enabling X11 support (\#1958)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+LIBRARY\+\_\+\+TYPE} CMake variable for overriding the library type (\#279,\#1307,\#1497,\#1574,\#1928)
|
||||
\item Added {\ttfamily GLFW\+\_\+\+PKG\+\_\+\+CONFIG\+\_\+\+REQUIRES\+\_\+\+PRIVATE} and {\ttfamily GLFW\+\_\+\+PKG\+\_\+\+CONFIG\+\_\+\+LIBS\+\_\+\+PRIVATE} CMake variables exposing pkg-\/config dependencies (\#1307)
|
||||
\item Made joystick subsystem initialize at first use (\#1284,\#1646)
|
||||
\item Made {\ttfamily GLFW\+\_\+\+DOUBLEBUFFER} a read-\/only window attribute
|
||||
\item Updated the minimum required CMake version to 3.\+1
|
||||
\item Updated gamepad mappings from upstream
|
||||
\item Disabled tests and examples by default when built as a CMake subdirectory
|
||||
\item Renamed {\ttfamily GLFW\+\_\+\+USE\+\_\+\+WAYLAND} CMake option to {\ttfamily GLFW\+\_\+\+BUILD\+\_\+\+WAYLAND} (\#1958)
|
||||
\item Removed {\ttfamily GLFW\+\_\+\+USE\+\_\+\+OSMESA} CMake option enabling the Null platform (\#1958)
|
||||
\item Removed CMake generated configuration header
|
||||
\item Bugfix\+: The CMake config-\/file package used an absolute path and was not relocatable (\#1470)
|
||||
\item Bugfix\+: Video modes with a duplicate screen area were discarded (\#1555,\#1556)
|
||||
\item Bugfix\+: Compiling with -\/Wextra-\/semi caused warnings (\#1440)
|
||||
\item Bugfix\+: Built-\/in mappings failed because some OEMs re-\/used VID/\+PID (\#1583)
|
||||
\item Bugfix\+: Some extension loader headers did not prevent default Open\+GL header inclusion (\#1695)
|
||||
\item Bugfix\+: Buffers were swapped at creation on single-\/buffered windows (\#1873)
|
||||
\item Bugfix\+: Gamepad mapping updates could spam {\ttfamily GLFW\+\_\+\+INVALID\+\_\+\+VALUE} due to incompatible controllers sharing hardware ID (\#1763)
|
||||
\item Bugfix\+: Native access functions for context handles did not check that the API matched
|
||||
\item Bugfix\+: {\ttfamily glfw\+Make\+Context\+Current} would access TLS slot before initialization
|
||||
\item Bugfix\+: {\ttfamily glfw\+Set\+Gamma\+Ramp} could emit {\ttfamily GLFW\+\_\+\+INVALID\+\_\+\+VALUE} before initialization
|
||||
\item Bugfix\+: {\ttfamily glfw\+Get\+Joystick\+User\+Pointer} returned {\ttfamily NULL} during disconnection (\#2092)
|
||||
\item \mbox{[}Win32\mbox{]} Added the {\ttfamily GLFW\+\_\+\+WIN32\+\_\+\+KEYBOARD\+\_\+\+MENU} window hint for enabling access to the window menu
|
||||
\item \mbox{[}Win32\mbox{]} Added a version info resource to the GLFW DLL
|
||||
\item \mbox{[}Win32\mbox{]} Made hidden helper window use its own window class
|
||||
\item \mbox{[}Win32\mbox{]} Disabled framebuffer transparency on Windows 7 when DWM windows are opaque (\#1512)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+INCLUDE\+\_\+\+VULKAN} plus {\ttfamily VK\+\_\+\+USE\+\_\+\+PLATFORM\+\_\+\+WIN32\+\_\+\+KHR} caused symbol redefinition (\#1524)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: The cursor position event was emitted before its cursor enter event (\#1490)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: The window hint {\ttfamily GLFW\+\_\+\+MAXIMIZED} did not move or resize the window (\#1499)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Disabled cursor mode interfered with some non-\/client actions
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Super key was not released after Win+V hotkey (\#1622)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily glfw\+Get\+Key\+Name} could access out of bounds and return an invalid pointer
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Some synthetic key events were reported as {\ttfamily GLFW\+\_\+\+KEY\+\_\+\+UNKNOWN} (\#1623)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Non-\/\+BMP Unicode codepoint input was reported as UTF-\/16
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Monitor functions could return invalid values after configuration change (\#1761)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Initialization would segfault on Windows 8 (not 8.\+1) (\#1775)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Duplicate size events were not filtered (\#1610)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Full screen windows were incorrectly resized by DPI changes (\#1582)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+SCALE\+\_\+\+TO\+\_\+\+MONITOR} had no effect on systems older than Windows 10 version 1703 (\#1511)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily USE\+\_\+\+MSVC\+\_\+\+RUNTIME\+\_\+\+LIBRARY\+\_\+\+DLL} had no effect on CMake 3.\+15 or later (\#1783,\#1796)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Compilation with LLVM for Windows failed (\#1807,\#1824,\#1874)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: The foreground lock timeout was overridden, ignoring the user
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Content scale queries could fail silently (\#1615)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Content scales could have garbage values if monitor was recently disconnected (\#1615)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: A window created maximized and undecorated would cover the whole monitor (\#1806)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: The default restored window position was lost when creating a maximized window
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily glfw\+Maximize\+Window} would make a hidden window visible
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily Alt+\+Prt\+Sc} would emit {\ttfamily GLFW\+\_\+\+KEY\+\_\+\+UNKNOWN} and a different scancode than {\ttfamily Prt\+Sc} (\#1993)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+KEY\+\_\+\+PAUSE} scancode from {\ttfamily glfw\+Get\+Key\+Scancode} did not match event scancode (\#1993)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Instance-\/local operations used executable instance (\#469,\#1296,\#1395)
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: The OSMesa library was not unloaded on termination
|
||||
\item \mbox{[}Win32\mbox{]} Bugfix\+: Right shift emitted {\ttfamily GLFW\+\_\+\+KEY\+\_\+\+UNKNOWN} when using a CJK IME (\#2050)
|
||||
\item \mbox{[}Cocoa\mbox{]} Added support for {\ttfamily VK\+\_\+\+EXT\+\_\+metal\+\_\+surface} (\#1619)
|
||||
\item \mbox{[}Cocoa\mbox{]} Added locating the Vulkan loader at runtime in an application bundle
|
||||
\item \mbox{[}Cocoa\mbox{]} Moved main menu creation to GLFW initialization time (\#1649)
|
||||
\item \mbox{[}Cocoa\mbox{]} Changed {\ttfamily EGLNative\+Window\+Type} from {\ttfamily NSView} to {\ttfamily CALayer} (\#1169)
|
||||
\item \mbox{[}Cocoa\mbox{]} Changed F13 key to report Print Screen for cross-\/platform consistency (\#1786)
|
||||
\item \mbox{[}Cocoa\mbox{]} Disabled mac\+OS fullscreen when {\ttfamily GLFW\+\_\+\+RESIZABLE} is false
|
||||
\item \mbox{[}Cocoa\mbox{]} Removed dependency on the Core\+Video framework
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: {\ttfamily glfw\+Set\+Window\+Size} used a bottom-\/left anchor point (\#1553)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Window remained on screen after destruction until event poll (\#1412)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Event processing before window creation would assert (\#1543)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Undecorated windows could not be iconified on recent mac\+OS
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Touching event queue from secondary thread before main thread would abort (\#1649)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Non-\/\+BMP Unicode codepoint input was reported as UTF-\/16 (\#1635)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Failing to retrieve the refresh rate of built-\/in displays could leak memory
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Objective-\/C files were compiled as C with CMake 3.\+19 (\#1787)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Duplicate video modes were not filtered out (\#1830)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Menu bar was not clickable on mac\+OS 10.\+15+ until it lost and regained focus (\#1648,\#1802)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Monitor name query could segfault on mac\+OS 11 (\#1809,\#1833)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: The install name of the installed dylib was relative (\#1504)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: The Molten\+VK layer contents scale was updated only after related events were emitted
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Moving the cursor programmatically would freeze it for a fraction of a second (\#1962)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: {\ttfamily k\+IOMaster\+Port\+Default} was deprecated in mac\+OS 12.\+0 (\#1980)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: {\ttfamily k\+UTType\+URL} was deprecated in mac\+OS 12.\+0 (\#2003)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: A connected Apple Air\+Play would emit a useless error (\#1791)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: The EGL and OSMesa libraries were not unloaded on termination
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+MAXIMIZED} was always true when {\ttfamily GLFW\+\_\+\+RESIZABLE} was false
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Changing {\ttfamily GLFW\+\_\+\+DECORATED} in mac\+OS fullscreen would abort application (\#1886)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: Setting a monitor from mac\+OS fullscreen would abort application (\#2110)
|
||||
\item \mbox{[}Cocoa\mbox{]} Bugfix\+: The Vulkan loader was not loaded from the {\ttfamily Frameworks} bundle subdirectory (\#2113,\#2120)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: The CMake files did not check for the XInput headers (\#1480)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Key names were not updated when the keyboard layout changed (\#1462,\#1528)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Decorations could not be enabled after window creation (\#1566)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Content scale fallback value could be inconsistent (\#1578)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: {\ttfamily glfw\+Maximize\+Window} had no effect on hidden windows
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Clearing {\ttfamily GLFW\+\_\+\+FLOATING} on a hidden window caused invalid read
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Changing {\ttfamily GLFW\+\_\+\+FLOATING} on a hidden window could silently fail
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Disabled cursor mode was interrupted by indicator windows
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Monitor physical dimensions could be reported as zero mm
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Window position events were not emitted during resizing (\#1613)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: {\ttfamily glfw\+Focus\+Window} could terminate on older WMs or without a WM
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Querying a disconnected monitor could segfault (\#1602)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: IME input of CJK was broken for \char`\"{}\+C\char`\"{} locale (\#1587,\#1636)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Termination would segfault if the IM had been destroyed
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Any IM started after initialization would not be detected
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Xlib errors caused by other parts of the application could be reported as GLFW errors
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: A handle race condition could cause a {\ttfamily Bad\+Window} error (\#1633)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: XKB path used keysyms instead of physical locations for non-\/printable keys (\#1598)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Function keys were mapped to {\ttfamily GLFW\+\_\+\+KEY\+\_\+\+UNKNOWN} for some layout combinations (\#1598)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Keys pressed simultaneously with others were not always reported (\#1112,\#1415,\#1472,\#1616)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Some window attributes were not applied on leaving fullscreen (\#1863)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Changing {\ttfamily GLFW\+\_\+\+FLOATING} could leak memory
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Icon pixel format conversion worked only by accident, relying on undefined behavior (\#1986)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Dynamic loading on Open\+BSD failed due to soname differences
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Waiting for events would fail if file descriptor was too large (\#2024)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Joystick events could lead to busy-\/waiting (\#1872)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: {\ttfamily glfw\+Wait\+Events$\ast$} did not continue for joystick events
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: {\ttfamily glfw\+Post\+Empty\+Event} could be ignored due to race condition (\#379,\#1281,\#1285,\#2033)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Dynamic loading on Net\+BSD failed due to soname differences
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Left shift of int constant relied on undefined behavior (\#1951)
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: The OSMesa libray was not unloaded on termination
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: A malformed response during selection transfer could cause a segfault
|
||||
\item \mbox{[}X11\mbox{]} Bugfix\+: Some calls would reset Xlib to the default error handler (\#2108)
|
||||
\item \mbox{[}Wayland\mbox{]} Added dynamic loading of all Wayland libraries
|
||||
\item \mbox{[}Wayland\mbox{]} Added support for key names via xkbcommon
|
||||
\item \mbox{[}Wayland\mbox{]} Added support for file path drop events (\#2040)
|
||||
\item \mbox{[}Wayland\mbox{]} Added support for more human-\/readable monitor names where available
|
||||
\item \mbox{[}Wayland\mbox{]} Disabled alpha channel for opaque windows on systems lacking {\ttfamily EGL\+\_\+\+EXT\+\_\+present\+\_\+opaque} (\#1895)
|
||||
\item \mbox{[}Wayland\mbox{]} Removed support for {\ttfamily wl\+\_\+shell} (\#1443)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: The {\ttfamily GLFW\+\_\+\+HAND\+\_\+\+CURSOR} shape used the wrong image (\#1432)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily CLOCK\+\_\+\+MONOTONIC} was not correctly enabled
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Repeated keys could be reported with {\ttfamily NULL} window (\#1704)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Retrieving partial framebuffer size would segfault
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Scrolling offsets were inverted compared to other platforms (\#1463)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Client-\/\+Side Decorations were destroyed in the wrong order (\#1798)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Monitors physical size could report zero (\#1784,\#1792)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Some keys were not repeating in Wayland (\#1908)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Non-\/arrow cursors are offset from the hotspot (\#1706,\#1899)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: The {\ttfamily O\+\_\+\+CLOEXEC} flag was not defined on Free\+BSD
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Key repeat could lead to a race condition (\#1710)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Activating a window would emit two input focus events
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Disable key repeat mechanism when window loses input focus
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Window hiding and showing did not work (\#1492,\#1731)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: A key being repeated was not released when window lost focus
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Showing a hidden window did not emit a window refresh event
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Full screen window creation did not ignore {\ttfamily GLFW\+\_\+\+VISIBLE}
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Some keys were reported as wrong key or {\ttfamily GLFW\+\_\+\+KEY\+\_\+\+UNKNOWN}
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Text input did not repeat along with key repeat
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Post\+Empty\+Event} sometimes had no effect (\#1520,\#1521)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Set\+Clipboard\+String} would fail if set to result of {\ttfamily glfw\+Get\+Clipboard\+String}
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Data source creation error would cause double free at termination
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Partial writes of clipboard string would cause beginning to repeat
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Some errors would cause clipboard string transfer to hang
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Drag and drop data was misinterpreted as clipboard string
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: MIME type matching was not performed for clipboard string
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: The OSMesa library was not unloaded on termination
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Create\+Window} could emit {\ttfamily GLFW\+\_\+\+FEATURE\+\_\+\+UNAVAILABLE}
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Lock key modifier bits were only set when lock keys were pressed
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: A window leaving full screen mode would be iconified (\#1995)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: A window leaving full screen mode ignored its desired size
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Set\+Window\+Monitor} did not update windowed mode size
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Restore\+Window} would make a full screen window windowed
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: A window maximized or restored by the user would enter an inconsistent state
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Window maximization events were not emitted
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Restore\+Window} assumed it was always in windowed mode
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Set\+Window\+Size} would resize a full screen window
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: A window content scale event would be emitted every time the window resized
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: If {\ttfamily glfw\+Init} failed it would close stdin
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Manual resizing with fallback decorations behaved erratically (\#1991,\#2115,\#2127)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Size limits included frame size for fallback decorations
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Updating {\ttfamily GLFW\+\_\+\+DECORATED} had no effect on server-\/side decorations
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: A monitor would be reported as connected again if its scale changed
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Terminate} would segfault if any monitor had changed scale
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Window content scale events were not emitted when monitor scale changed
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Set\+Window\+Aspect\+Ratio} reported an error instead of applying the specified ratio
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+MAXIMIZED} window hint had no effect
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily glfw\+Restore\+Window} had no effect before first show
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Hiding and then showing a window caused program abort on wlroots compositors (\#1268)
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+DECORATED} was ignored when showing a window with XDG decorations
|
||||
\item \mbox{[}Wayland\mbox{]} Bugfix\+: Connecting a mouse after {\ttfamily glfw\+Init} would segfault (\#1450)
|
||||
\item \mbox{[}POSIX\mbox{]} Removed use of deprecated function {\ttfamily gettimeofday}
|
||||
\item \mbox{[}POSIX\mbox{]} Bugfix\+: {\ttfamily CLOCK\+\_\+\+MONOTONIC} was not correctly tested for or enabled
|
||||
\item \mbox{[}Linux\mbox{]} Bugfix\+: Joysticks without buttons were ignored (\#2042,\#2043)
|
||||
\item \mbox{[}WGL\mbox{]} Disabled the DWM swap interval hack for Windows 8 and later (\#1072)
|
||||
\item \mbox{[}NSGL\mbox{]} Removed enforcement of forward-\/compatible flag for core contexts
|
||||
\item \mbox{[}NSGL\mbox{]} Bugfix\+: {\ttfamily GLFW\+\_\+\+COCOA\+\_\+\+RETINA\+\_\+\+FRAMEBUFFER} had no effect on newer mac\+OS versions (\#1442)
|
||||
\item \mbox{[}NSGL\mbox{]} Bugfix\+: Workaround for swap interval on 10.\+14 broke on 10.\+12 (\#1483)
|
||||
\item \mbox{[}NSGL\mbox{]} Bugfix\+: Defining {\ttfamily GL\+\_\+\+SILENCE\+\_\+\+DEPRECATION} externally caused a duplicate definition warning (\#1840)
|
||||
\item \mbox{[}EGL\mbox{]} Added platform selection via the {\ttfamily EGL\+\_\+\+EXT\+\_\+platform\+\_\+base} extension (\#442)
|
||||
\item \mbox{[}EGL\mbox{]} Added ANGLE backend selection via {\ttfamily EGL\+\_\+\+ANGLE\+\_\+platform\+\_\+angle} extension (\#1380) \mbox{[}EGL\mbox{]} Added loading of glvnd {\ttfamily lib\+Open\+GL.\+so.\+0} where available for Open\+GL
|
||||
\item \mbox{[}EGL\mbox{]} Bugfix\+: The {\ttfamily GLFW\+\_\+\+DOUBLEBUFFER} context attribute was ignored (\#1843)
|
||||
\item \mbox{[}GLX\mbox{]} Added loading of glvnd {\ttfamily lib\+GLX.\+so.\+0} where available
|
||||
\item \mbox{[}GLX\mbox{]} Bugfix\+: Context creation failed if GLX 1.\+4 was not exported by GLX library
|
||||
\end{DoxyItemize}\hypertarget{md__r_e_a_d_m_e_autotoc_md10}{}\doxysection{Contact}\label{md__r_e_a_d_m_e_autotoc_md10}
|
||||
On \href{https://www.glfw.org/}{\texttt{ glfw.\+org}} you can find the latest version of GLFW, as well as news, documentation and other information about the project.
|
||||
|
||||
If you have questions related to the use of GLFW, we have a \href{https://discourse.glfw.org/}{\texttt{ forum}}, and the {\ttfamily \#glfw} IRC channel on \href{https://libera.chat/}{\texttt{ Libera.\+Chat}}.
|
||||
|
||||
If you have a bug to report, a patch to submit or a feature you\textquotesingle{}d like to request, please file it in the \href{https://github.com/glfw/glfw/issues}{\texttt{ issue tracker}} on Git\+Hub.
|
||||
|
||||
Finally, if you\textquotesingle{}re interested in helping out with the development of GLFW or porting it to your favorite platform, join us on the forum, Git\+Hub or IRC.
|
200
latex/refman.tex
200
latex/refman.tex
@ -1,200 +0,0 @@
|
||||
% Handle batch mode
|
||||
% to overcome problems with too many open files
|
||||
\let\mypdfximage\pdfximage\def\pdfximage{\immediate\mypdfximage}
|
||||
% Set document class depending on configuration
|
||||
\documentclass[twoside]{book}
|
||||
%% moved from doxygen.sty due to workaround for LaTex 2019 version and unmaintained tabu package
|
||||
\usepackage{ifthen}
|
||||
\ifx\requestedLaTeXdate\undefined
|
||||
\usepackage{array}
|
||||
\else
|
||||
\usepackage{array}[=2016-10-06]
|
||||
\fi
|
||||
%%
|
||||
% Packages required by doxygen
|
||||
\usepackage{fixltx2e} % for \textsubscript
|
||||
\usepackage{doxygen}
|
||||
\usepackage{graphicx}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{makeidx}
|
||||
\PassOptionsToPackage{warn}{textcomp}
|
||||
\usepackage{textcomp}
|
||||
\usepackage[nointegrals]{wasysym}
|
||||
\usepackage{ifxetex}
|
||||
% NLS support packages
|
||||
% Define default fonts
|
||||
% Font selection
|
||||
\usepackage[T1]{fontenc}
|
||||
% set main and monospaced font
|
||||
\usepackage[scaled=.90]{helvet}
|
||||
\usepackage{courier}
|
||||
\renewcommand{\familydefault}{\sfdefault}
|
||||
\usepackage{sectsty}
|
||||
\allsectionsfont{%
|
||||
\fontseries{bc}\selectfont%
|
||||
\color{darkgray}%
|
||||
}
|
||||
\renewcommand{\DoxyLabelFont}{%
|
||||
\fontseries{bc}\selectfont%
|
||||
\color{darkgray}%
|
||||
}
|
||||
\newcommand{\+}{\discretionary{\mbox{\scriptsize$\hookleftarrow$}}{}{}}
|
||||
% Arguments of doxygenemoji:
|
||||
% 1) ':<text>:' form of the emoji, already LaTeX-escaped
|
||||
% 2) file with the name of the emoji without the .png extension
|
||||
% in case image exist use this otherwise use the ':<text>:' form
|
||||
\newcommand{\doxygenemoji}[2]{%
|
||||
\IfFileExists{./#2.png}{\raisebox{-0.1em}{\includegraphics[height=0.9em]{./#2.png}}}{#1}%
|
||||
}
|
||||
% Page & text layout
|
||||
\usepackage{geometry}
|
||||
\geometry{%
|
||||
a4paper,%
|
||||
top=2.5cm,%
|
||||
bottom=2.5cm,%
|
||||
left=2.5cm,%
|
||||
right=2.5cm%
|
||||
}
|
||||
\usepackage{changepage}
|
||||
% Allow a bit of overflow to go unnoticed by other means
|
||||
\tolerance=750
|
||||
\hfuzz=15pt
|
||||
\hbadness=750
|
||||
\setlength{\emergencystretch}{15pt}
|
||||
\setlength{\parindent}{0cm}
|
||||
\newcommand{\doxynormalparskip}{\setlength{\parskip}{3ex plus 2ex minus 2ex}}
|
||||
\newcommand{\doxytocparskip}{\setlength{\parskip}{1ex plus 0ex minus 0ex}}
|
||||
\doxynormalparskip
|
||||
% Redefine paragraph/subparagraph environments, using sectsty fonts
|
||||
\makeatletter
|
||||
\renewcommand{\paragraph}{%
|
||||
\@startsection{paragraph}{4}{0ex}{-1.0ex}{1.0ex}{%
|
||||
\normalfont\normalsize\bfseries\SS@parafont%
|
||||
}%
|
||||
}
|
||||
\renewcommand{\subparagraph}{%
|
||||
\@startsection{subparagraph}{5}{0ex}{-1.0ex}{1.0ex}{%
|
||||
\normalfont\normalsize\bfseries\SS@subparafont%
|
||||
}%
|
||||
}
|
||||
\makeatother
|
||||
\makeatletter
|
||||
\newcommand\hrulefilll{\leavevmode\leaders\hrule\hskip 0pt plus 1filll\kern\z@}
|
||||
\makeatother
|
||||
% Headers & footers
|
||||
\usepackage{fancyhdr}
|
||||
\pagestyle{fancyplain}
|
||||
\renewcommand{\footrulewidth}{0.4pt}
|
||||
\fancypagestyle{fancyplain}{
|
||||
\fancyhf{}
|
||||
\fancyhead[LE, RO]{\bfseries\thepage}
|
||||
\fancyhead[LO]{\bfseries\rightmark}
|
||||
\fancyhead[RE]{\bfseries\leftmark}
|
||||
\fancyfoot[LO, RE]{\bfseries\scriptsize Generated by Doxygen }
|
||||
}
|
||||
\fancypagestyle{plain}{
|
||||
\fancyhf{}
|
||||
\fancyfoot[LO, RE]{\bfseries\scriptsize Generated by Doxygen }
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
}
|
||||
\pagestyle{fancyplain}
|
||||
\renewcommand{\chaptermark}[1]{%
|
||||
\markboth{#1}{}%
|
||||
}
|
||||
\renewcommand{\sectionmark}[1]{%
|
||||
\markright{\thesection\ #1}%
|
||||
}
|
||||
% ToC, LoF, LoT, bibliography, and index
|
||||
% Indices & bibliography
|
||||
\usepackage{natbib}
|
||||
\usepackage[titles]{tocloft}
|
||||
\setcounter{tocdepth}{3}
|
||||
\setcounter{secnumdepth}{5}
|
||||
% creating indexes
|
||||
\makeindex
|
||||
\usepackage{newunicodechar}
|
||||
\newunicodechar{⁻}{${}^{-}$}% Superscript minus
|
||||
\newunicodechar{²}{${}^{2}$}% Superscript two
|
||||
\newunicodechar{³}{${}^{3}$}% Superscript three
|
||||
% Hyperlinks
|
||||
% Hyperlinks (required, but should be loaded last)
|
||||
\ifpdf
|
||||
\usepackage[pdftex,pagebackref=true]{hyperref}
|
||||
\else
|
||||
\ifxetex
|
||||
\usepackage[pagebackref=true]{hyperref}
|
||||
\else
|
||||
\usepackage[ps2pdf,pagebackref=true]{hyperref}
|
||||
\fi
|
||||
\fi
|
||||
\hypersetup{%
|
||||
colorlinks=true,%
|
||||
linkcolor=blue,%
|
||||
citecolor=blue,%
|
||||
unicode,%
|
||||
pdftitle={My Project},%
|
||||
pdfsubject={}%
|
||||
}
|
||||
% Custom commands used by the header
|
||||
% Custom commands
|
||||
\newcommand{\clearemptydoublepage}{%
|
||||
\newpage{\pagestyle{empty}\cleardoublepage}%
|
||||
}
|
||||
% caption style definition
|
||||
\usepackage{caption}
|
||||
\captionsetup{labelsep=space,justification=centering,font={bf},singlelinecheck=off,skip=4pt,position=top}
|
||||
% in page table of contents
|
||||
\usepackage{etoc}
|
||||
\etocsettocstyle{\doxytocparskip}{\doxynormalparskip}
|
||||
% prevent numbers overlap the titles in toc
|
||||
\renewcommand{\numberline}[1]{#1~}
|
||||
% End of preamble, now comes the document contents
|
||||
%===== C O N T E N T S =====
|
||||
\begin{document}
|
||||
\raggedbottom
|
||||
% Titlepage & ToC
|
||||
% To avoid duplicate page anchors due to reuse of same numbers for
|
||||
% the index (be it as roman numbers)
|
||||
\hypersetup{pageanchor=false,
|
||||
bookmarksnumbered=true,
|
||||
pdfencoding=unicode
|
||||
}
|
||||
\pagenumbering{alph}
|
||||
\begin{titlepage}
|
||||
\vspace*{7cm}
|
||||
\begin{center}%
|
||||
{\Large My Project}\\
|
||||
\vspace*{1cm}
|
||||
{\large Generated by Doxygen 1.9.6}\\
|
||||
\end{center}
|
||||
\end{titlepage}
|
||||
\clearemptydoublepage
|
||||
\pagenumbering{roman}
|
||||
\tableofcontents
|
||||
\clearemptydoublepage
|
||||
\pagenumbering{arabic}
|
||||
% re-enable anchors again
|
||||
\hypersetup{pageanchor=true}
|
||||
%--- Begin generated contents ---
|
||||
\chapter{Acknowledgements}
|
||||
\label{md__c_o_n_t_r_i_b_u_t_o_r_s}
|
||||
\Hypertarget{md__c_o_n_t_r_i_b_u_t_o_r_s}
|
||||
\input{md__c_o_n_t_r_i_b_u_t_o_r_s}
|
||||
\chapter{LICENSE}
|
||||
\label{md__l_i_c_e_n_s_e}
|
||||
\Hypertarget{md__l_i_c_e_n_s_e}
|
||||
\input{md__l_i_c_e_n_s_e}
|
||||
\chapter{GLFW}
|
||||
\label{md__r_e_a_d_m_e}
|
||||
\Hypertarget{md__r_e_a_d_m_e}
|
||||
\input{md__r_e_a_d_m_e}
|
||||
%--- End generated contents ---
|
||||
% Index
|
||||
\backmatter
|
||||
\newpage
|
||||
\phantomsection
|
||||
\clearemptydoublepage
|
||||
\addcontentsline{toc}{chapter}{\indexname}
|
||||
\printindex
|
||||
% Required for some languages (in combination with latexdocumentpre from the header)
|
||||
\end{document}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user