123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980 |
- <?xml version="1.0" encoding="utf-8" ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <!-- This file is generated by Nim. -->
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!-- Favicon -->
- <link rel="shortcut icon" href="data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAAAAUAAAAF////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAAAAIAAABbAAAAlQAAAKIAAACbAAAAmwAAAKIAAACVAAAAWwAAAAL///8A////AP///wD///8A////AAAAABQAAADAAAAAYwAAAA3///8A////AP///wD///8AAAAADQAAAGMAAADAAAAAFP///wD///8A////AP///wAAAACdAAAAOv///wD///8A////AP///wD///8A////AP///wD///8AAAAAOgAAAJ3///8A////AP///wAAAAAnAAAAcP///wAAAAAoAAAASv///wD///8A////AP///wAAAABKAAAAKP///wAAAABwAAAAJ////wD///8AAAAAgQAAABwAAACIAAAAkAAAAJMAAACtAAAAFQAAABUAAACtAAAAkwAAAJAAAACIAAAAHAAAAIH///8A////AAAAAKQAAACrAAAAaP///wD///8AAAAARQAAANIAAADSAAAARf///wD///8AAAAAaAAAAKsAAACk////AAAAADMAAACcAAAAnQAAABj///8A////AP///wAAAAAYAAAAGP///wD///8A////AAAAABgAAACdAAAAnAAAADMAAAB1AAAAwwAAAP8AAADpAAAAsQAAAE4AAAAb////AP///wAAAAAbAAAATgAAALEAAADpAAAA/wAAAMMAAAB1AAAAtwAAAOkAAAD/AAAA/wAAAP8AAADvAAAA3gAAAN4AAADeAAAA3gAAAO8AAAD/AAAA/wAAAP8AAADpAAAAtwAAAGUAAAA/AAAA3wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAADfAAAAPwAAAGX///8A////AAAAAEgAAADtAAAAvwAAAL0AAADGAAAA7wAAAO8AAADGAAAAvQAAAL8AAADtAAAASP///wD///8A////AP///wD///8AAAAAO////wD///8A////AAAAAIcAAACH////AP///wD///8AAAAAO////wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//8AAP//AAD4HwAA7/cAAN/7AAD//wAAoYUAAJ55AACf+QAAh+EAAAAAAADAAwAA4AcAAP5/AAD//wAA//8AAA=="/>
- <link rel="icon" type="image/png" sizes="32x32" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH4QQQEwksSS9ZWwAAAk1JREFUWMPtll2ITVEUx39nn/O7Y5qR8f05wtCUUr6ZIS++8pEnkZInPImneaCQ5METNdOkeFBKUhMPRIkHKfEuUZSUlGlKPN2TrgfncpvmnntnmlEyq1Z7t89/rf9a6+y99oZxGZf/XeIq61EdtgKXgdXA0xrYAvBjOIF1AI9zvjcC74BSpndrJPkBWDScTF8Aa4E3wDlgHbASaANmVqlcCnwHvgDvgVfAJ+AikAAvgfVZwLnSVZHZaOuKoQi3ZOMi4NkYkpe1p4J7A8BpYAD49hfIy/oqG0+hLomiKP2L5L+1ubn5115S+3OAn4EnwBlgMzCjyt6ZAnQCJ4A7wOs88iRJHvw50HoujuPBoCKwHWiosy8MdfZnAdcHk8dxXFJ3VQbQlCTJvRBCGdRbD4M6uc5glpY3eAihpN5S5w12diSEcCCEcKUO4ljdr15T76ur1FDDLIQQ3qv71EdDOe3Kxj3leRXyk+pxdWnFWod6Wt2bY3de3aSuUHcPBVimHs7mK9WrmeOF6lR1o9qnzskh2ar2qm1qizpfXaPeVGdlmGN5pb09qMxz1Xb1kLqgzn1RyH7JUXW52lr5e/Kqi9qpto7V1atuUzfnARrV7jEib1T76gG2qxdGmXyiekkt1GswPTtek0aBfJp6YySGBfWg2tPQ0FAYgf1stUfdmdcjarbYJEniKIq6gY/Aw+zWHAC+p2labGpqiorFYgGYCEzN7oQdQClN07O1/EfDyGgC0ALMBdYAi4FyK+4H3gLPsxfR1zRNi+NP7nH5J+QntnXe5B5mpfQAAAAASUVORK5CYII=">
- <!-- Google fonts -->
- <link href='https://fonts.googleapis.com/css?family=Lato:400,600,900' rel='stylesheet' type='text/css'/>
- <link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,500,600' rel='stylesheet' type='text/css'/>
- <!-- CSS -->
- <title>nodesnim/thirdparty/opengl/glu</title>
- <link rel="stylesheet" type="text/css" href="../../../nimdoc.out.css">
- <script type="text/javascript" src="dochack.js"></script>
- <script type="text/javascript">
- function main() {
- var pragmaDots = document.getElementsByClassName("pragmadots");
- for (var i = 0; i < pragmaDots.length; i++) {
- pragmaDots[i].onclick = function(event) {
- // Hide tease
- event.target.parentNode.style.display = "none";
- // Show actual
- event.target.parentNode.nextElementSibling.style.display = "inline";
- }
- }
- const toggleSwitch = document.querySelector('.theme-switch input[type="checkbox"]');
- function switchTheme(e) {
- if (e.target.checked) {
- document.documentElement.setAttribute('data-theme', 'dark');
- localStorage.setItem('theme', 'dark');
- } else {
- document.documentElement.setAttribute('data-theme', 'light');
- localStorage.setItem('theme', 'light');
- }
- }
- toggleSwitch.addEventListener('change', switchTheme, false);
- if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
- document.documentElement.setAttribute('data-theme', "dark");
- toggleSwitch.checked = true;
- } else if (window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches) {
- document.documentElement.setAttribute('data-theme', "light");
- toggleSwitch.checked = false;
- } else {
- const currentTheme = localStorage.getItem('theme') ? localStorage.getItem('theme') : null;
- if (currentTheme) {
- document.documentElement.setAttribute('data-theme', currentTheme);
- if (currentTheme === 'dark') {
- toggleSwitch.checked = true;
- }
- }
- }
- }
- </script>
- </head>
- <body onload="main()">
- <div class="document" id="documentId">
- <div class="container">
- <h1 class="title">nodesnim/thirdparty/opengl/glu</h1>
- <div class="row">
- <div class="three columns">
- <div class="theme-switch-wrapper">
- <label class="theme-switch" for="checkbox">
- <input type="checkbox" id="checkbox" />
- <div class="slider round"></div>
- </label>
- <em>Dark Mode</em>
- </div>
- <div id="global-links">
- <ul class="simple">
- </ul>
- </div>
- <div id="searchInputDiv">
- Search: <input type="text" id="searchInput"
- onkeyup="search()" />
- </div>
- <div>
- Group by:
- <select onchange="groupBy(this.value)">
- <option value="section">Section</option>
- <option value="type">Type</option>
- </select>
- </div>
- <ul class="simple simple-toc" id="toc-list">
- <li>
- <a class="reference reference-toplevel" href="#6" id="56">Imports</a>
- <ul class="simple simple-toc-section">
-
- </ul>
- </li>
- <li>
- <a class="reference reference-toplevel" href="#7" id="57">Types</a>
- <ul class="simple simple-toc-section">
- <li><a class="reference" href="#ViewPortArray"
- title="ViewPortArray = array[0 .. 3, GLint]"><wbr />View<wbr />Port<wbr />Array<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#T16dArray"
- title="T16dArray = array[0 .. 15, GLdouble]"><wbr />T16d<wbr />Array<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#CallBack"
- title="CallBack = proc () {.cdecl.}"><wbr />Call<wbr />Back<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#T3dArray"
- title="T3dArray = array[0 .. 2, GLdouble]"><wbr />T3d<wbr />Array<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#T4pArray"
- title="T4pArray = array[0 .. 3, pointer]"><wbr />T4p<wbr />Array<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#T4fArray"
- title="T4fArray = array[0 .. 3, GLfloat]"><wbr />T4f<wbr />Array<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUnurbs"
- title="GLUnurbs {.final.} = ptr object"><wbr />GLUnurbs<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUquadric"
- title="GLUquadric {.final.} = ptr object"><wbr />GLUquadric<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtesselator"
- title="GLUtesselator {.final.} = ptr object"><wbr />GLUtesselator<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUnurbsObj"
- title="GLUnurbsObj = GLUnurbs"><wbr />GLUnurbs<wbr />Obj<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUquadricObj"
- title="GLUquadricObj = GLUquadric"><wbr />GLUquadric<wbr />Obj<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtesselatorObj"
- title="GLUtesselatorObj = GLUtesselator"><wbr />GLUtesselator<wbr />Obj<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtriangulatorObj"
- title="GLUtriangulatorObj = GLUtesselator"><wbr />GLUtriangulator<wbr />Obj<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUquadricErrorProc"
- title="GLUquadricErrorProc = proc (p: GLenum)"><wbr />GLUquadric<wbr />Error<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessBeginProc"
- title="GLUtessBeginProc = proc (p: GLenum)"><wbr />GLUtess<wbr />Begin<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessEdgeFlagProc"
- title="GLUtessEdgeFlagProc = proc (p: GLboolean)"><wbr />GLUtess<wbr />Edge<wbr />Flag<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessVertexProc"
- title="GLUtessVertexProc = proc (p: pointer)"><wbr />GLUtess<wbr />Vertex<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessEndProc"
- title="GLUtessEndProc = proc ()"><wbr />GLUtess<wbr />End<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessErrorProc"
- title="GLUtessErrorProc = proc (p: GLenum)"><wbr />GLUtess<wbr />Error<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessCombineProc"
- title="GLUtessCombineProc = proc (p1: var T3dArray; p2: T4pArray; p3: T4fArray; p4: ptr pointer)"><wbr />GLUtess<wbr />Combine<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessBeginDataProc"
- title="GLUtessBeginDataProc = proc (p1: GLenum; p2: pointer)"><wbr />GLUtess<wbr />Begin<wbr />Data<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessEdgeFlagDataProc"
- title="GLUtessEdgeFlagDataProc = proc (p1: GLboolean; p2: pointer)"><wbr />GLUtess<wbr />Edge<wbr />Flag<wbr />Data<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessVertexDataProc"
- title="GLUtessVertexDataProc = proc (p1, p2: pointer)"><wbr />GLUtess<wbr />Vertex<wbr />Data<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessEndDataProc"
- title="GLUtessEndDataProc = proc (p: pointer)"><wbr />GLUtess<wbr />End<wbr />Data<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessErrorDataProc"
- title="GLUtessErrorDataProc = proc (p1: GLenum; p2: pointer)"><wbr />GLUtess<wbr />Error<wbr />Data<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUtessCombineDataProc"
- title="GLUtessCombineDataProc = proc (p1: var T3dArray; p2: var T4pArray; p3: var T4fArray;
- p4: ptr pointer; p5: pointer)"><wbr />GLUtess<wbr />Combine<wbr />Data<wbr />Proc<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLUnurbsErrorProc"
- title="GLUnurbsErrorProc = proc (p: GLenum)"><wbr />GLUnurbs<wbr />Error<wbr />Proc<span class="attachedType"></span></a></li>
- </ul>
- </li>
- <li>
- <a class="reference reference-toplevel" href="#10" id="60">Consts</a>
- <ul class="simple simple-toc-section">
- <li><a class="reference" href="#GLU_VERSION_1_1"
- title="GLU_VERSION_1_1 = 1"><wbr />GLU_<wbr />VERSION_<wbr />1_<wbr />1<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_VERSION_1_2"
- title="GLU_VERSION_1_2 = 1"><wbr />GLU_<wbr />VERSION_<wbr />1_<wbr />2<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_INVALID_ENUM"
- title="GLU_INVALID_ENUM = 100900"><wbr />GLU_<wbr />INVALID_<wbr />ENUM<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_INVALID_VALUE"
- title="GLU_INVALID_VALUE = 100901"><wbr />GLU_<wbr />INVALID_<wbr />VALUE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_OUT_OF_MEMORY"
- title="GLU_OUT_OF_MEMORY = 100902"><wbr />GLU_<wbr />OUT_<wbr />OF_<wbr />MEMORY<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_INCOMPATIBLE_GL_VERSION"
- title="GLU_INCOMPATIBLE_GL_VERSION = 100903"><wbr />GLU_<wbr />INCOMPATIBLE_<wbr />GL_<wbr />VERSION<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_VERSION"
- title="GLU_VERSION = 100800"><wbr />GLU_<wbr />VERSION<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_EXTENSIONS"
- title="GLU_EXTENSIONS = 100801"><wbr />GLU_<wbr />EXTENSIONS<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TRUE"
- title="GLU_TRUE = true"><wbr />GLU_<wbr />TRUE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_FALSE"
- title="GLU_FALSE = false"><wbr />GLU_<wbr />FALSE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_SMOOTH"
- title="GLU_SMOOTH = 100000"><wbr />GLU_<wbr />SMOOTH<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_FLAT"
- title="GLU_FLAT = 100001"><wbr />GLU_<wbr />FLAT<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NONE"
- title="GLU_NONE = 100002"><wbr />GLU_<wbr />NONE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_POINT"
- title="GLU_POINT = 100010"><wbr />GLU_<wbr />POINT<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_LINE"
- title="GLU_LINE = 100011"><wbr />GLU_<wbr />LINE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_FILL"
- title="GLU_FILL = 100012"><wbr />GLU_<wbr />FILL<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_SILHOUETTE"
- title="GLU_SILHOUETTE = 100013"><wbr />GLU_<wbr />SILHOUETTE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_OUTSIDE"
- title="GLU_OUTSIDE = 100020"><wbr />GLU_<wbr />OUTSIDE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_INSIDE"
- title="GLU_INSIDE = 100021"><wbr />GLU_<wbr />INSIDE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_MAX_COORD"
- title="GLU_TESS_MAX_COORD = 1e+150"><wbr />GLU_<wbr />TESS_<wbr />MAX_<wbr />COORD<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_WINDING_RULE"
- title="GLU_TESS_WINDING_RULE = 100140"><wbr />GLU_<wbr />TESS_<wbr />WINDING_<wbr />RULE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_BOUNDARY_ONLY"
- title="GLU_TESS_BOUNDARY_ONLY = 100141"><wbr />GLU_<wbr />TESS_<wbr />BOUNDARY_<wbr />ONLY<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_TOLERANCE"
- title="GLU_TESS_TOLERANCE = 100142"><wbr />GLU_<wbr />TESS_<wbr />TOLERANCE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_WINDING_ODD"
- title="GLU_TESS_WINDING_ODD = 100130"><wbr />GLU_<wbr />TESS_<wbr />WINDING_<wbr />ODD<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_WINDING_NONZERO"
- title="GLU_TESS_WINDING_NONZERO = 100131"><wbr />GLU_<wbr />TESS_<wbr />WINDING_<wbr />NONZERO<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_WINDING_POSITIVE"
- title="GLU_TESS_WINDING_POSITIVE = 100132"><wbr />GLU_<wbr />TESS_<wbr />WINDING_<wbr />POSITIVE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_WINDING_NEGATIVE"
- title="GLU_TESS_WINDING_NEGATIVE = 100133"><wbr />GLU_<wbr />TESS_<wbr />WINDING_<wbr />NEGATIVE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_WINDING_ABS_GEQ_TWO"
- title="GLU_TESS_WINDING_ABS_GEQ_TWO = 100134"><wbr />GLU_<wbr />TESS_<wbr />WINDING_<wbr />ABS_<wbr />GEQ_<wbr />TWO<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_BEGIN"
- title="GLU_TESS_BEGIN = 100100"><wbr />GLU_<wbr />TESS_<wbr />BEGIN<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#constGLU_TESS_VERTEX"
- title="constGLU_TESS_VERTEX = 100101"><wbr />const<wbr />GLU_<wbr />TESS_<wbr />VERTEX<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_END"
- title="GLU_TESS_END = 100102"><wbr />GLU_<wbr />TESS_<wbr />END<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR"
- title="GLU_TESS_ERROR = 100103"><wbr />GLU_<wbr />TESS_<wbr />ERROR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_EDGE_FLAG"
- title="GLU_TESS_EDGE_FLAG = 100104"><wbr />GLU_<wbr />TESS_<wbr />EDGE_<wbr />FLAG<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_COMBINE"
- title="GLU_TESS_COMBINE = 100105"><wbr />GLU_<wbr />TESS_<wbr />COMBINE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_BEGIN_DATA"
- title="GLU_TESS_BEGIN_DATA = 100106"><wbr />GLU_<wbr />TESS_<wbr />BEGIN_<wbr />DATA<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_VERTEX_DATA"
- title="GLU_TESS_VERTEX_DATA = 100107"><wbr />GLU_<wbr />TESS_<wbr />VERTEX_<wbr />DATA<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_END_DATA"
- title="GLU_TESS_END_DATA = 100108"><wbr />GLU_<wbr />TESS_<wbr />END_<wbr />DATA<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR_DATA"
- title="GLU_TESS_ERROR_DATA = 100109"><wbr />GLU_<wbr />TESS_<wbr />ERROR_<wbr />DATA<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_EDGE_FLAG_DATA"
- title="GLU_TESS_EDGE_FLAG_DATA = 100110"><wbr />GLU_<wbr />TESS_<wbr />EDGE_<wbr />FLAG_<wbr />DATA<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_COMBINE_DATA"
- title="GLU_TESS_COMBINE_DATA = 100111"><wbr />GLU_<wbr />TESS_<wbr />COMBINE_<wbr />DATA<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR1"
- title="GLU_TESS_ERROR1 = 100151"><wbr />GLU_<wbr />TESS_<wbr />ERROR1<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR2"
- title="GLU_TESS_ERROR2 = 100152"><wbr />GLU_<wbr />TESS_<wbr />ERROR2<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR3"
- title="GLU_TESS_ERROR3 = 100153"><wbr />GLU_<wbr />TESS_<wbr />ERROR3<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR4"
- title="GLU_TESS_ERROR4 = 100154"><wbr />GLU_<wbr />TESS_<wbr />ERROR4<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR5"
- title="GLU_TESS_ERROR5 = 100155"><wbr />GLU_<wbr />TESS_<wbr />ERROR5<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR6"
- title="GLU_TESS_ERROR6 = 100156"><wbr />GLU_<wbr />TESS_<wbr />ERROR6<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR7"
- title="GLU_TESS_ERROR7 = 100157"><wbr />GLU_<wbr />TESS_<wbr />ERROR7<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_ERROR8"
- title="GLU_TESS_ERROR8 = 100158"><wbr />GLU_<wbr />TESS_<wbr />ERROR8<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_MISSING_BEGIN_POLYGON"
- title="GLU_TESS_MISSING_BEGIN_POLYGON = 100151"><wbr />GLU_<wbr />TESS_<wbr />MISSING_<wbr />BEGIN_<wbr />POLYGON<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_MISSING_BEGIN_CONTOUR"
- title="GLU_TESS_MISSING_BEGIN_CONTOUR = 100152"><wbr />GLU_<wbr />TESS_<wbr />MISSING_<wbr />BEGIN_<wbr />CONTOUR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_MISSING_END_POLYGON"
- title="GLU_TESS_MISSING_END_POLYGON = 100153"><wbr />GLU_<wbr />TESS_<wbr />MISSING_<wbr />END_<wbr />POLYGON<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_MISSING_END_CONTOUR"
- title="GLU_TESS_MISSING_END_CONTOUR = 100154"><wbr />GLU_<wbr />TESS_<wbr />MISSING_<wbr />END_<wbr />CONTOUR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_COORD_TOO_LARGE"
- title="GLU_TESS_COORD_TOO_LARGE = 100155"><wbr />GLU_<wbr />TESS_<wbr />COORD_<wbr />TOO_<wbr />LARGE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_TESS_NEED_COMBINE_CALLBACK"
- title="GLU_TESS_NEED_COMBINE_CALLBACK = 100156"><wbr />GLU_<wbr />TESS_<wbr />NEED_<wbr />COMBINE_<wbr />CALLBACK<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_AUTO_LOAD_MATRIX"
- title="GLU_AUTO_LOAD_MATRIX = 100200"><wbr />GLU_<wbr />AUTO_<wbr />LOAD_<wbr />MATRIX<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_CULLING"
- title="GLU_CULLING = 100201"><wbr />GLU_<wbr />CULLING<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_SAMPLING_TOLERANCE"
- title="GLU_SAMPLING_TOLERANCE = 100203"><wbr />GLU_<wbr />SAMPLING_<wbr />TOLERANCE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_DISPLAY_MODE"
- title="GLU_DISPLAY_MODE = 100204"><wbr />GLU_<wbr />DISPLAY_<wbr />MODE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_PARAMETRIC_TOLERANCE"
- title="GLU_PARAMETRIC_TOLERANCE = 100202"><wbr />GLU_<wbr />PARAMETRIC_<wbr />TOLERANCE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_SAMPLING_METHOD"
- title="GLU_SAMPLING_METHOD = 100205"><wbr />GLU_<wbr />SAMPLING_<wbr />METHOD<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_U_STEP"
- title="GLU_U_STEP = 100206"><wbr />GLU_<wbr />U_<wbr />STEP<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_V_STEP"
- title="GLU_V_STEP = 100207"><wbr />GLU_<wbr />V_<wbr />STEP<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_PATH_LENGTH"
- title="GLU_PATH_LENGTH = 100215"><wbr />GLU_<wbr />PATH_<wbr />LENGTH<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_PARAMETRIC_ERROR"
- title="GLU_PARAMETRIC_ERROR = 100216"><wbr />GLU_<wbr />PARAMETRIC_<wbr />ERROR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_DOMAIN_DISTANCE"
- title="GLU_DOMAIN_DISTANCE = 100217"><wbr />GLU_<wbr />DOMAIN_<wbr />DISTANCE<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_MAP1_TRIM_2"
- title="GLU_MAP1_TRIM_2 = 100210"><wbr />GLU_<wbr />MAP1_<wbr />TRIM_<wbr />2<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_MAP1_TRIM_3"
- title="GLU_MAP1_TRIM_3 = 100211"><wbr />GLU_<wbr />MAP1_<wbr />TRIM_<wbr />3<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_OUTLINE_POLYGON"
- title="GLU_OUTLINE_POLYGON = 100240"><wbr />GLU_<wbr />OUTLINE_<wbr />POLYGON<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_OUTLINE_PATCH"
- title="GLU_OUTLINE_PATCH = 100241"><wbr />GLU_<wbr />OUTLINE_<wbr />PATCH<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR1"
- title="GLU_NURBS_ERROR1 = 100251"><wbr />GLU_<wbr />NURBS_<wbr />ERROR1<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR2"
- title="GLU_NURBS_ERROR2 = 100252"><wbr />GLU_<wbr />NURBS_<wbr />ERROR2<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR3"
- title="GLU_NURBS_ERROR3 = 100253"><wbr />GLU_<wbr />NURBS_<wbr />ERROR3<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR4"
- title="GLU_NURBS_ERROR4 = 100254"><wbr />GLU_<wbr />NURBS_<wbr />ERROR4<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR5"
- title="GLU_NURBS_ERROR5 = 100255"><wbr />GLU_<wbr />NURBS_<wbr />ERROR5<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR6"
- title="GLU_NURBS_ERROR6 = 100256"><wbr />GLU_<wbr />NURBS_<wbr />ERROR6<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR7"
- title="GLU_NURBS_ERROR7 = 100257"><wbr />GLU_<wbr />NURBS_<wbr />ERROR7<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR8"
- title="GLU_NURBS_ERROR8 = 100258"><wbr />GLU_<wbr />NURBS_<wbr />ERROR8<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR9"
- title="GLU_NURBS_ERROR9 = 100259"><wbr />GLU_<wbr />NURBS_<wbr />ERROR9<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR10"
- title="GLU_NURBS_ERROR10 = 100260"><wbr />GLU_<wbr />NURBS_<wbr />ERROR10<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR11"
- title="GLU_NURBS_ERROR11 = 100261"><wbr />GLU_<wbr />NURBS_<wbr />ERROR11<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR12"
- title="GLU_NURBS_ERROR12 = 100262"><wbr />GLU_<wbr />NURBS_<wbr />ERROR12<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR13"
- title="GLU_NURBS_ERROR13 = 100263"><wbr />GLU_<wbr />NURBS_<wbr />ERROR13<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR14"
- title="GLU_NURBS_ERROR14 = 100264"><wbr />GLU_<wbr />NURBS_<wbr />ERROR14<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR15"
- title="GLU_NURBS_ERROR15 = 100265"><wbr />GLU_<wbr />NURBS_<wbr />ERROR15<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR16"
- title="GLU_NURBS_ERROR16 = 100266"><wbr />GLU_<wbr />NURBS_<wbr />ERROR16<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR17"
- title="GLU_NURBS_ERROR17 = 100267"><wbr />GLU_<wbr />NURBS_<wbr />ERROR17<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR18"
- title="GLU_NURBS_ERROR18 = 100268"><wbr />GLU_<wbr />NURBS_<wbr />ERROR18<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR19"
- title="GLU_NURBS_ERROR19 = 100269"><wbr />GLU_<wbr />NURBS_<wbr />ERROR19<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR20"
- title="GLU_NURBS_ERROR20 = 100270"><wbr />GLU_<wbr />NURBS_<wbr />ERROR20<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR21"
- title="GLU_NURBS_ERROR21 = 100271"><wbr />GLU_<wbr />NURBS_<wbr />ERROR21<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR22"
- title="GLU_NURBS_ERROR22 = 100272"><wbr />GLU_<wbr />NURBS_<wbr />ERROR22<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR23"
- title="GLU_NURBS_ERROR23 = 100273"><wbr />GLU_<wbr />NURBS_<wbr />ERROR23<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR24"
- title="GLU_NURBS_ERROR24 = 100274"><wbr />GLU_<wbr />NURBS_<wbr />ERROR24<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR25"
- title="GLU_NURBS_ERROR25 = 100275"><wbr />GLU_<wbr />NURBS_<wbr />ERROR25<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR26"
- title="GLU_NURBS_ERROR26 = 100276"><wbr />GLU_<wbr />NURBS_<wbr />ERROR26<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR27"
- title="GLU_NURBS_ERROR27 = 100277"><wbr />GLU_<wbr />NURBS_<wbr />ERROR27<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR28"
- title="GLU_NURBS_ERROR28 = 100278"><wbr />GLU_<wbr />NURBS_<wbr />ERROR28<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR29"
- title="GLU_NURBS_ERROR29 = 100279"><wbr />GLU_<wbr />NURBS_<wbr />ERROR29<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR30"
- title="GLU_NURBS_ERROR30 = 100280"><wbr />GLU_<wbr />NURBS_<wbr />ERROR30<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR31"
- title="GLU_NURBS_ERROR31 = 100281"><wbr />GLU_<wbr />NURBS_<wbr />ERROR31<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR32"
- title="GLU_NURBS_ERROR32 = 100282"><wbr />GLU_<wbr />NURBS_<wbr />ERROR32<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR33"
- title="GLU_NURBS_ERROR33 = 100283"><wbr />GLU_<wbr />NURBS_<wbr />ERROR33<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR34"
- title="GLU_NURBS_ERROR34 = 100284"><wbr />GLU_<wbr />NURBS_<wbr />ERROR34<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR35"
- title="GLU_NURBS_ERROR35 = 100285"><wbr />GLU_<wbr />NURBS_<wbr />ERROR35<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR36"
- title="GLU_NURBS_ERROR36 = 100286"><wbr />GLU_<wbr />NURBS_<wbr />ERROR36<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_NURBS_ERROR37"
- title="GLU_NURBS_ERROR37 = 100287"><wbr />GLU_<wbr />NURBS_<wbr />ERROR37<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_CW"
- title="GLU_CW = 100120"><wbr />GLU_<wbr />CW<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_CCW"
- title="GLU_CCW = 100121"><wbr />GLU_<wbr />CCW<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_INTERIOR"
- title="GLU_INTERIOR = 100122"><wbr />GLU_<wbr />INTERIOR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_EXTERIOR"
- title="GLU_EXTERIOR = 100123"><wbr />GLU_<wbr />EXTERIOR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_UNKNOWN"
- title="GLU_UNKNOWN = 100124"><wbr />GLU_<wbr />UNKNOWN<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_BEGIN"
- title="GLU_BEGIN = 100100"><wbr />GLU_<wbr />BEGIN<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_VERTEX"
- title="GLU_VERTEX = 100101"><wbr />GLU_<wbr />VERTEX<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_END"
- title="GLU_END = 100102"><wbr />GLU_<wbr />END<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_ERROR"
- title="GLU_ERROR = 100103"><wbr />GLU_<wbr />ERROR<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#GLU_EDGE_FLAG"
- title="GLU_EDGE_FLAG = 100104"><wbr />GLU_<wbr />EDGE_<wbr />FLAG<span class="attachedType"></span></a></li>
- </ul>
- </li>
- <li>
- <a class="reference reference-toplevel" href="#12" id="62">Procs</a>
- <ul class="simple simple-toc-section">
- <li><a class="reference" href="#gluErrorString%2CGLenum"
- title="gluErrorString(errCode: GLenum): cstring"><wbr />glu<wbr />Error<wbr />String<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluGetString%2CGLenum"
- title="gluGetString(name: GLenum): cstring"><wbr />glu<wbr />Get<wbr />String<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluOrtho2D%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble"
- title="gluOrtho2D(left, right, bottom, top: GLdouble)"><wbr />glu<wbr />Ortho2D<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluPerspective%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble"
- title="gluPerspective(fovy, aspect, zNear, zFar: GLdouble)"><wbr />glu<wbr />Perspective<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluPickMatrix%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CViewPortArray"
- title="gluPickMatrix(x, y, width, height: GLdouble; viewport: var ViewPortArray)"><wbr />glu<wbr />Pick<wbr />Matrix<span class="attachedType">ViewPortArray</span></a></li>
- <li><a class="reference" href="#gluLookAt%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble"
- title="gluLookAt(eyex, eyey, eyez, centerx, centery, centerz, upx, upy, upz: GLdouble)"><wbr />glu<wbr />Look<wbr />At<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluProject%2CGLdouble%2CGLdouble%2CGLdouble%2CT16dArray%2CT16dArray%2CViewPortArray%2Cptr.GLdouble%2Cptr.GLdouble%2Cptr.GLdouble"
- title="gluProject(objx, objy, objz: GLdouble; modelMatrix, projMatrix: var T16dArray;
- viewport: var ViewPortArray; winx, winy, winz: ptr GLdouble): int"><wbr />glu<wbr />Project<span class="attachedType">T16dArray</span></a></li>
- <li><a class="reference" href="#gluUnProject%2CGLdouble%2CGLdouble%2CGLdouble%2CT16dArray%2CT16dArray%2CViewPortArray%2Cptr.GLdouble%2Cptr.GLdouble%2Cptr.GLdouble"
- title="gluUnProject(winx, winy, winz: GLdouble; modelMatrix, projMatrix: var T16dArray;
- viewport: var ViewPortArray; objx, objy, objz: ptr GLdouble): int"><wbr />glu<wbr />Un<wbr />Project<span class="attachedType">T16dArray</span></a></li>
- <li><a class="reference" href="#gluScaleImage%2CGLenum%2CGLint%2CGLint%2CGLenum%2Cpointer%2CGLint%2CGLint%2CGLenum%2Cpointer"
- title="gluScaleImage(format: GLenum; widthin, heightin: GLint; typein: GLenum;
- datain: pointer; widthout, heightout: GLint; typeout: GLenum;
- dataout: pointer): int"><wbr />glu<wbr />Scale<wbr />Image<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluBuild1DMipmaps%2CGLenum%2CGLint%2CGLint%2CGLenum%2CGLenum%2Cpointer"
- title="gluBuild1DMipmaps(target: GLenum; components, width: GLint; format, atype: GLenum;
- data: pointer): int"><wbr />glu<wbr />Build1DMipmaps<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluBuild2DMipmaps%2CGLenum%2CGLint%2CGLint%2CGLint%2CGLenum%2CGLenum%2Cpointer"
- title="gluBuild2DMipmaps(target: GLenum; components, width, height: GLint;
- format, atype: GLenum; data: pointer): int"><wbr />glu<wbr />Build2DMipmaps<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluNewQuadric"
- title="gluNewQuadric(): GLUquadric"><wbr />glu<wbr />New<wbr />Quadric<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluDeleteQuadric%2CGLUquadric"
- title="gluDeleteQuadric(state: GLUquadric)"><wbr />glu<wbr />Delete<wbr />Quadric<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluQuadricNormals%2CGLUquadric%2CGLenum"
- title="gluQuadricNormals(quadObject: GLUquadric; normals: GLenum)"><wbr />glu<wbr />Quadric<wbr />Normals<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluQuadricTexture%2CGLUquadric%2CGLboolean"
- title="gluQuadricTexture(quadObject: GLUquadric; textureCoords: GLboolean)"><wbr />glu<wbr />Quadric<wbr />Texture<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluQuadricOrientation%2CGLUquadric%2CGLenum"
- title="gluQuadricOrientation(quadObject: GLUquadric; orientation: GLenum)"><wbr />glu<wbr />Quadric<wbr />Orientation<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluQuadricDrawStyle%2CGLUquadric%2CGLenum"
- title="gluQuadricDrawStyle(quadObject: GLUquadric; drawStyle: GLenum)"><wbr />glu<wbr />Quadric<wbr />Draw<wbr />Style<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluCylinder%2CGLUquadric%2CGLdouble%2CGLdouble%2CGLdouble%2CGLint%2CGLint"
- title="gluCylinder(qobj: GLUquadric; baseRadius, topRadius, height: GLdouble;
- slices, stacks: GLint)"><wbr />glu<wbr />Cylinder<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluDisk%2CGLUquadric%2CGLdouble%2CGLdouble%2CGLint%2CGLint"
- title="gluDisk(qobj: GLUquadric; innerRadius, outerRadius: GLdouble; slices, loops: GLint)"><wbr />glu<wbr />Disk<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluPartialDisk%2CGLUquadric%2CGLdouble%2CGLdouble%2CGLint%2CGLint%2CGLdouble%2CGLdouble"
- title="gluPartialDisk(qobj: GLUquadric; innerRadius, outerRadius: GLdouble;
- slices, loops: GLint; startAngle, sweepAngle: GLdouble)"><wbr />glu<wbr />Partial<wbr />Disk<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluSphere%2CGLUquadric%2CGLdouble%2CGLint%2CGLint"
- title="gluSphere(qobj: GLUquadric; radius: GLdouble; slices, stacks: GLint)"><wbr />glu<wbr />Sphere<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluQuadricCallback%2CGLUquadric%2CGLenum%2CCallBack"
- title="gluQuadricCallback(qobj: GLUquadric; which: GLenum; fn: CallBack)"><wbr />glu<wbr />Quadric<wbr />Callback<span class="attachedType">CallBack</span></a></li>
- <li><a class="reference" href="#gluNewTess"
- title="gluNewTess(): GLUtesselator"><wbr />glu<wbr />New<wbr />Tess<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluDeleteTess%2CGLUtesselator"
- title="gluDeleteTess(tess: GLUtesselator)"><wbr />glu<wbr />Delete<wbr />Tess<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessBeginPolygon%2CGLUtesselator%2Cpointer"
- title="gluTessBeginPolygon(tess: GLUtesselator; polygon_data: pointer)"><wbr />glu<wbr />Tess<wbr />Begin<wbr />Polygon<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessBeginContour%2CGLUtesselator"
- title="gluTessBeginContour(tess: GLUtesselator)"><wbr />glu<wbr />Tess<wbr />Begin<wbr />Contour<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessVertex%2CGLUtesselator%2CT3dArray%2Cpointer"
- title="gluTessVertex(tess: GLUtesselator; coords: var T3dArray; data: pointer)"><wbr />glu<wbr />Tess<wbr />Vertex<span class="attachedType">T3dArray</span></a></li>
- <li><a class="reference" href="#gluTessEndContour%2CGLUtesselator"
- title="gluTessEndContour(tess: GLUtesselator)"><wbr />glu<wbr />Tess<wbr />End<wbr />Contour<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessEndPolygon%2CGLUtesselator"
- title="gluTessEndPolygon(tess: GLUtesselator)"><wbr />glu<wbr />Tess<wbr />End<wbr />Polygon<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessProperty%2CGLUtesselator%2CGLenum%2CGLdouble"
- title="gluTessProperty(tess: GLUtesselator; which: GLenum; value: GLdouble)"><wbr />glu<wbr />Tess<wbr />Property<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessNormal%2CGLUtesselator%2CGLdouble%2CGLdouble%2CGLdouble"
- title="gluTessNormal(tess: GLUtesselator; x, y, z: GLdouble)"><wbr />glu<wbr />Tess<wbr />Normal<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluTessCallback%2CGLUtesselator%2CGLenum%2CCallBack"
- title="gluTessCallback(tess: GLUtesselator; which: GLenum; fn: CallBack)"><wbr />glu<wbr />Tess<wbr />Callback<span class="attachedType">CallBack</span></a></li>
- <li><a class="reference" href="#gluGetTessProperty%2CGLUtesselator%2CGLenum%2Cptr.GLdouble"
- title="gluGetTessProperty(tess: GLUtesselator; which: GLenum; value: ptr GLdouble)"><wbr />glu<wbr />Get<wbr />Tess<wbr />Property<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluNewNurbsRenderer"
- title="gluNewNurbsRenderer(): GLUnurbs"><wbr />glu<wbr />New<wbr />Nurbs<wbr />Renderer<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluDeleteNurbsRenderer%2CGLUnurbs"
- title="gluDeleteNurbsRenderer(nobj: GLUnurbs)"><wbr />glu<wbr />Delete<wbr />Nurbs<wbr />Renderer<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluBeginSurface%2CGLUnurbs"
- title="gluBeginSurface(nobj: GLUnurbs)"><wbr />glu<wbr />Begin<wbr />Surface<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluBeginCurve%2CGLUnurbs"
- title="gluBeginCurve(nobj: GLUnurbs)"><wbr />glu<wbr />Begin<wbr />Curve<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluEndCurve%2CGLUnurbs"
- title="gluEndCurve(nobj: GLUnurbs)"><wbr />glu<wbr />End<wbr />Curve<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluEndSurface%2CGLUnurbs"
- title="gluEndSurface(nobj: GLUnurbs)"><wbr />glu<wbr />End<wbr />Surface<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluBeginTrim%2CGLUnurbs"
- title="gluBeginTrim(nobj: GLUnurbs)"><wbr />glu<wbr />Begin<wbr />Trim<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluEndTrim%2CGLUnurbs"
- title="gluEndTrim(nobj: GLUnurbs)"><wbr />glu<wbr />End<wbr />Trim<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluPwlCurve%2CGLUnurbs%2CGLint%2Cptr.GLfloat%2CGLint%2CGLenum"
- title="gluPwlCurve(nobj: GLUnurbs; count: GLint; aarray: ptr GLfloat; stride: GLint;
- atype: GLenum)"><wbr />glu<wbr />Pwl<wbr />Curve<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluNurbsCurve%2CGLUnurbs%2CGLint%2Cptr.GLfloat%2CGLint%2Cptr.GLfloat%2CGLint%2CGLenum"
- title="gluNurbsCurve(nobj: GLUnurbs; nknots: GLint; knot: ptr GLfloat; stride: GLint;
- ctlarray: ptr GLfloat; order: GLint; atype: GLenum)"><wbr />glu<wbr />Nurbs<wbr />Curve<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluNurbsSurface%2CGLUnurbs%2CGLint%2Cptr.GLfloat%2CGLint%2Cptr.GLfloat%2CGLint%2CGLint%2Cptr.GLfloat%2CGLint%2CGLint%2CGLenum"
- title="gluNurbsSurface(nobj: GLUnurbs; sknot_count: GLint; sknot: ptr GLfloat;
- tknot_count: GLint; tknot: ptr GLfloat; s_stride, t_stride: GLint;
- ctlarray: ptr GLfloat; sorder, torder: GLint; atype: GLenum)"><wbr />glu<wbr />Nurbs<wbr />Surface<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluLoadSamplingMatrices%2CGLUnurbs%2CT16dArray%2CT16dArray%2CViewPortArray"
- title="gluLoadSamplingMatrices(nobj: GLUnurbs; modelMatrix, projMatrix: var T16dArray;
- viewport: var ViewPortArray)"><wbr />glu<wbr />Load<wbr />Sampling<wbr />Matrices<span class="attachedType">T16dArray</span></a></li>
- <li><a class="reference" href="#gluNurbsProperty%2CGLUnurbs%2CGLenum%2CGLfloat"
- title="gluNurbsProperty(nobj: GLUnurbs; aproperty: GLenum; value: GLfloat)"><wbr />glu<wbr />Nurbs<wbr />Property<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluGetNurbsProperty%2CGLUnurbs%2CGLenum%2Cptr.GLfloat"
- title="gluGetNurbsProperty(nobj: GLUnurbs; aproperty: GLenum; value: ptr GLfloat)"><wbr />glu<wbr />Get<wbr />Nurbs<wbr />Property<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluNurbsCallback%2CGLUnurbs%2CGLenum%2CCallBack"
- title="gluNurbsCallback(nobj: GLUnurbs; which: GLenum; fn: CallBack)"><wbr />glu<wbr />Nurbs<wbr />Callback<span class="attachedType">CallBack</span></a></li>
- <li><a class="reference" href="#gluBeginPolygon%2CGLUtesselator"
- title="gluBeginPolygon(tess: GLUtesselator)"><wbr />glu<wbr />Begin<wbr />Polygon<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluNextContour%2CGLUtesselator%2CGLenum"
- title="gluNextContour(tess: GLUtesselator; atype: GLenum)"><wbr />glu<wbr />Next<wbr />Contour<span class="attachedType"></span></a></li>
- <li><a class="reference" href="#gluEndPolygon%2CGLUtesselator"
- title="gluEndPolygon(tess: GLUtesselator)"><wbr />glu<wbr />End<wbr />Polygon<span class="attachedType"></span></a></li>
- </ul>
- </li>
- </ul>
- </div>
- <div class="nine columns" id="content">
- <div id="tocRoot"></div>
-
- <p class="module-desc"></p>
- <div class="section" id="6">
- <h1><a class="toc-backref" href="#6">Imports</a></h1>
- <dl class="item">
- <a class="reference external" href="../opengl.html">../opengl</a>
- </dl></div>
- <div class="section" id="7">
- <h1><a class="toc-backref" href="#7">Types</a></h1>
- <dl class="item">
- <a id="ViewPortArray"></a>
- <dt><pre><a href="glu.html#ViewPortArray"><span class="Identifier">ViewPortArray</span></a> <span class="Other">=</span> <span class="Identifier">array</span><span class="Other">[</span><span class="DecNumber">0</span> <span class="Operator">..</span> <span class="DecNumber">3</span><span class="Other">,</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">]</span></pre></dt>
- <dd>
- </dd>
- <a id="T16dArray"></a>
- <dt><pre><a href="glu.html#T16dArray"><span class="Identifier">T16dArray</span></a> <span class="Other">=</span> <span class="Identifier">array</span><span class="Other">[</span><span class="DecNumber">0</span> <span class="Operator">..</span> <span class="DecNumber">15</span><span class="Other">,</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">]</span></pre></dt>
- <dd>
- </dd>
- <a id="CallBack"></a>
- <dt><pre><a href="glu.html#CallBack"><span class="Identifier">CallBack</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">cdecl</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="T3dArray"></a>
- <dt><pre><a href="glu.html#T3dArray"><span class="Identifier">T3dArray</span></a> <span class="Other">=</span> <span class="Identifier">array</span><span class="Other">[</span><span class="DecNumber">0</span> <span class="Operator">..</span> <span class="DecNumber">2</span><span class="Other">,</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">]</span></pre></dt>
- <dd>
- </dd>
- <a id="T4pArray"></a>
- <dt><pre><a href="glu.html#T4pArray"><span class="Identifier">T4pArray</span></a> <span class="Other">=</span> <span class="Identifier">array</span><span class="Other">[</span><span class="DecNumber">0</span> <span class="Operator">..</span> <span class="DecNumber">3</span><span class="Other">,</span> <span class="Identifier">pointer</span><span class="Other">]</span></pre></dt>
- <dd>
- </dd>
- <a id="T4fArray"></a>
- <dt><pre><a href="glu.html#T4fArray"><span class="Identifier">T4fArray</span></a> <span class="Other">=</span> <span class="Identifier">array</span><span class="Other">[</span><span class="DecNumber">0</span> <span class="Operator">..</span> <span class="DecNumber">3</span><span class="Other">,</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">]</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUnurbs"></a>
- <dt><pre><a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">final</span></span><span class="Other">.}</span></span> <span class="Other">=</span> <span class="Keyword">ptr</span> <span class="Keyword">object</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUquadric"></a>
- <dt><pre><a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">final</span></span><span class="Other">.}</span></span> <span class="Other">=</span> <span class="Keyword">ptr</span> <span class="Keyword">object</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtesselator"></a>
- <dt><pre><a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">final</span></span><span class="Other">.}</span></span> <span class="Other">=</span> <span class="Keyword">ptr</span> <span class="Keyword">object</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUnurbsObj"></a>
- <dt><pre><a href="glu.html#GLUnurbsObj"><span class="Identifier">GLUnurbsObj</span></a> <span class="Other">=</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a></pre></dt>
- <dd>
- </dd>
- <a id="GLUquadricObj"></a>
- <dt><pre><a href="glu.html#GLUquadricObj"><span class="Identifier">GLUquadricObj</span></a> <span class="Other">=</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a></pre></dt>
- <dd>
- </dd>
- <a id="GLUtesselatorObj"></a>
- <dt><pre><a href="glu.html#GLUtesselatorObj"><span class="Identifier">GLUtesselatorObj</span></a> <span class="Other">=</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a></pre></dt>
- <dd>
- </dd>
- <a id="GLUtriangulatorObj"></a>
- <dt><pre><a href="glu.html#GLUtriangulatorObj"><span class="Identifier">GLUtriangulatorObj</span></a> <span class="Other">=</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a></pre></dt>
- <dd>
- </dd>
- <a id="GLUquadricErrorProc"></a>
- <dt><pre><a href="glu.html#GLUquadricErrorProc"><span class="Identifier">GLUquadricErrorProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessBeginProc"></a>
- <dt><pre><a href="glu.html#GLUtessBeginProc"><span class="Identifier">GLUtessBeginProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessEdgeFlagProc"></a>
- <dt><pre><a href="glu.html#GLUtessEdgeFlagProc"><span class="Identifier">GLUtessEdgeFlagProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <a href="../opengl.html#GLboolean"><span class="Identifier">GLboolean</span></a><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessVertexProc"></a>
- <dt><pre><a href="glu.html#GLUtessVertexProc"><span class="Identifier">GLUtessVertexProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessEndProc"></a>
- <dt><pre><a href="glu.html#GLUtessEndProc"><span class="Identifier">GLUtessEndProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessErrorProc"></a>
- <dt><pre><a href="glu.html#GLUtessErrorProc"><span class="Identifier">GLUtessErrorProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessCombineProc"></a>
- <dt><pre><a href="glu.html#GLUtessCombineProc"><span class="Identifier">GLUtessCombineProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p1</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T3dArray"><span class="Identifier">T3dArray</span></a><span class="Other">;</span> <span class="Identifier">p2</span><span class="Other">:</span> <a href="glu.html#T4pArray"><span class="Identifier">T4pArray</span></a><span class="Other">;</span> <span class="Identifier">p3</span><span class="Other">:</span> <a href="glu.html#T4fArray"><span class="Identifier">T4fArray</span></a><span class="Other">;</span> <span class="Identifier">p4</span><span class="Other">:</span> <span class="Keyword">ptr</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessBeginDataProc"></a>
- <dt><pre><a href="glu.html#GLUtessBeginDataProc"><span class="Identifier">GLUtessBeginDataProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p1</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">p2</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessEdgeFlagDataProc"></a>
- <dt><pre><a href="glu.html#GLUtessEdgeFlagDataProc"><span class="Identifier">GLUtessEdgeFlagDataProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p1</span><span class="Other">:</span> <a href="../opengl.html#GLboolean"><span class="Identifier">GLboolean</span></a><span class="Other">;</span> <span class="Identifier">p2</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessVertexDataProc"></a>
- <dt><pre><a href="glu.html#GLUtessVertexDataProc"><span class="Identifier">GLUtessVertexDataProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p1</span><span class="Other">,</span> <span class="Identifier">p2</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessEndDataProc"></a>
- <dt><pre><a href="glu.html#GLUtessEndDataProc"><span class="Identifier">GLUtessEndDataProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessErrorDataProc"></a>
- <dt><pre><a href="glu.html#GLUtessErrorDataProc"><span class="Identifier">GLUtessErrorDataProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p1</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">p2</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUtessCombineDataProc"></a>
- <dt><pre><a href="glu.html#GLUtessCombineDataProc"><span class="Identifier">GLUtessCombineDataProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p1</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T3dArray"><span class="Identifier">T3dArray</span></a><span class="Other">;</span> <span class="Identifier">p2</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T4pArray"><span class="Identifier">T4pArray</span></a><span class="Other">;</span> <span class="Identifier">p3</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T4fArray"><span class="Identifier">T4fArray</span></a><span class="Other">;</span>
- <span class="Identifier">p4</span><span class="Other">:</span> <span class="Keyword">ptr</span> <span class="Identifier">pointer</span><span class="Other">;</span> <span class="Identifier">p5</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- <a id="GLUnurbsErrorProc"></a>
- <dt><pre><a href="glu.html#GLUnurbsErrorProc"><span class="Identifier">GLUnurbsErrorProc</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">p</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span></pre></dt>
- <dd>
- </dd>
- </dl></div>
- <div class="section" id="10">
- <h1><a class="toc-backref" href="#10">Consts</a></h1>
- <dl class="item">
- <a id="GLU_VERSION_1_1"></a>
- <dt><pre><a href="glu.html#GLU_VERSION_1_1"><span class="Identifier">GLU_VERSION_1_1</span></a> <span class="Other">=</span> <span class="DecNumber">1</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_VERSION_1_2"></a>
- <dt><pre><a href="glu.html#GLU_VERSION_1_2"><span class="Identifier">GLU_VERSION_1_2</span></a> <span class="Other">=</span> <span class="DecNumber">1</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_INVALID_ENUM"></a>
- <dt><pre><a href="glu.html#GLU_INVALID_ENUM"><span class="Identifier">GLU_INVALID_ENUM</span></a> <span class="Other">=</span> <span class="DecNumber">100900</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_INVALID_VALUE"></a>
- <dt><pre><a href="glu.html#GLU_INVALID_VALUE"><span class="Identifier">GLU_INVALID_VALUE</span></a> <span class="Other">=</span> <span class="DecNumber">100901</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_OUT_OF_MEMORY"></a>
- <dt><pre><a href="glu.html#GLU_OUT_OF_MEMORY"><span class="Identifier">GLU_OUT_OF_MEMORY</span></a> <span class="Other">=</span> <span class="DecNumber">100902</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_INCOMPATIBLE_GL_VERSION"></a>
- <dt><pre><a href="glu.html#GLU_INCOMPATIBLE_GL_VERSION"><span class="Identifier">GLU_INCOMPATIBLE_GL_VERSION</span></a> <span class="Other">=</span> <span class="DecNumber">100903</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_VERSION"></a>
- <dt><pre><a href="glu.html#GLU_VERSION"><span class="Identifier">GLU_VERSION</span></a> <span class="Other">=</span> <span class="DecNumber">100800</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_EXTENSIONS"></a>
- <dt><pre><a href="glu.html#GLU_EXTENSIONS"><span class="Identifier">GLU_EXTENSIONS</span></a> <span class="Other">=</span> <span class="DecNumber">100801</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TRUE"></a>
- <dt><pre><a href="glu.html#GLU_TRUE"><span class="Identifier">GLU_TRUE</span></a> <span class="Other">=</span> <span class="DecNumber">true</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_FALSE"></a>
- <dt><pre><a href="glu.html#GLU_FALSE"><span class="Identifier">GLU_FALSE</span></a> <span class="Other">=</span> <span class="DecNumber">false</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_SMOOTH"></a>
- <dt><pre><a href="glu.html#GLU_SMOOTH"><span class="Identifier">GLU_SMOOTH</span></a> <span class="Other">=</span> <span class="DecNumber">100000</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_FLAT"></a>
- <dt><pre><a href="glu.html#GLU_FLAT"><span class="Identifier">GLU_FLAT</span></a> <span class="Other">=</span> <span class="DecNumber">100001</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NONE"></a>
- <dt><pre><a href="glu.html#GLU_NONE"><span class="Identifier">GLU_NONE</span></a> <span class="Other">=</span> <span class="DecNumber">100002</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_POINT"></a>
- <dt><pre><a href="glu.html#GLU_POINT"><span class="Identifier">GLU_POINT</span></a> <span class="Other">=</span> <span class="DecNumber">100010</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_LINE"></a>
- <dt><pre><a href="glu.html#GLU_LINE"><span class="Identifier">GLU_LINE</span></a> <span class="Other">=</span> <span class="DecNumber">100011</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_FILL"></a>
- <dt><pre><a href="glu.html#GLU_FILL"><span class="Identifier">GLU_FILL</span></a> <span class="Other">=</span> <span class="DecNumber">100012</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_SILHOUETTE"></a>
- <dt><pre><a href="glu.html#GLU_SILHOUETTE"><span class="Identifier">GLU_SILHOUETTE</span></a> <span class="Other">=</span> <span class="DecNumber">100013</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_OUTSIDE"></a>
- <dt><pre><a href="glu.html#GLU_OUTSIDE"><span class="Identifier">GLU_OUTSIDE</span></a> <span class="Other">=</span> <span class="DecNumber">100020</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_INSIDE"></a>
- <dt><pre><a href="glu.html#GLU_INSIDE"><span class="Identifier">GLU_INSIDE</span></a> <span class="Other">=</span> <span class="DecNumber">100021</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_MAX_COORD"></a>
- <dt><pre><a href="glu.html#GLU_TESS_MAX_COORD"><span class="Identifier">GLU_TESS_MAX_COORD</span></a> <span class="Other">=</span> <span class="FloatNumber">1e+150</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_WINDING_RULE"></a>
- <dt><pre><a href="glu.html#GLU_TESS_WINDING_RULE"><span class="Identifier">GLU_TESS_WINDING_RULE</span></a> <span class="Other">=</span> <span class="DecNumber">100140</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_BOUNDARY_ONLY"></a>
- <dt><pre><a href="glu.html#GLU_TESS_BOUNDARY_ONLY"><span class="Identifier">GLU_TESS_BOUNDARY_ONLY</span></a> <span class="Other">=</span> <span class="DecNumber">100141</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_TOLERANCE"></a>
- <dt><pre><a href="glu.html#GLU_TESS_TOLERANCE"><span class="Identifier">GLU_TESS_TOLERANCE</span></a> <span class="Other">=</span> <span class="DecNumber">100142</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_WINDING_ODD"></a>
- <dt><pre><a href="glu.html#GLU_TESS_WINDING_ODD"><span class="Identifier">GLU_TESS_WINDING_ODD</span></a> <span class="Other">=</span> <span class="DecNumber">100130</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_WINDING_NONZERO"></a>
- <dt><pre><a href="glu.html#GLU_TESS_WINDING_NONZERO"><span class="Identifier">GLU_TESS_WINDING_NONZERO</span></a> <span class="Other">=</span> <span class="DecNumber">100131</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_WINDING_POSITIVE"></a>
- <dt><pre><a href="glu.html#GLU_TESS_WINDING_POSITIVE"><span class="Identifier">GLU_TESS_WINDING_POSITIVE</span></a> <span class="Other">=</span> <span class="DecNumber">100132</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_WINDING_NEGATIVE"></a>
- <dt><pre><a href="glu.html#GLU_TESS_WINDING_NEGATIVE"><span class="Identifier">GLU_TESS_WINDING_NEGATIVE</span></a> <span class="Other">=</span> <span class="DecNumber">100133</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_WINDING_ABS_GEQ_TWO"></a>
- <dt><pre><a href="glu.html#GLU_TESS_WINDING_ABS_GEQ_TWO"><span class="Identifier">GLU_TESS_WINDING_ABS_GEQ_TWO</span></a> <span class="Other">=</span> <span class="DecNumber">100134</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_BEGIN"></a>
- <dt><pre><a href="glu.html#GLU_TESS_BEGIN"><span class="Identifier">GLU_TESS_BEGIN</span></a> <span class="Other">=</span> <span class="DecNumber">100100</span></pre></dt>
- <dd>
- </dd>
- <a id="constGLU_TESS_VERTEX"></a>
- <dt><pre><a href="glu.html#constGLU_TESS_VERTEX"><span class="Identifier">constGLU_TESS_VERTEX</span></a> <span class="Other">=</span> <span class="DecNumber">100101</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_END"></a>
- <dt><pre><a href="glu.html#GLU_TESS_END"><span class="Identifier">GLU_TESS_END</span></a> <span class="Other">=</span> <span class="DecNumber">100102</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR"><span class="Identifier">GLU_TESS_ERROR</span></a> <span class="Other">=</span> <span class="DecNumber">100103</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_EDGE_FLAG"></a>
- <dt><pre><a href="glu.html#GLU_TESS_EDGE_FLAG"><span class="Identifier">GLU_TESS_EDGE_FLAG</span></a> <span class="Other">=</span> <span class="DecNumber">100104</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_COMBINE"></a>
- <dt><pre><a href="glu.html#GLU_TESS_COMBINE"><span class="Identifier">GLU_TESS_COMBINE</span></a> <span class="Other">=</span> <span class="DecNumber">100105</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_BEGIN_DATA"></a>
- <dt><pre><a href="glu.html#GLU_TESS_BEGIN_DATA"><span class="Identifier">GLU_TESS_BEGIN_DATA</span></a> <span class="Other">=</span> <span class="DecNumber">100106</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_VERTEX_DATA"></a>
- <dt><pre><a href="glu.html#GLU_TESS_VERTEX_DATA"><span class="Identifier">GLU_TESS_VERTEX_DATA</span></a> <span class="Other">=</span> <span class="DecNumber">100107</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_END_DATA"></a>
- <dt><pre><a href="glu.html#GLU_TESS_END_DATA"><span class="Identifier">GLU_TESS_END_DATA</span></a> <span class="Other">=</span> <span class="DecNumber">100108</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR_DATA"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR_DATA"><span class="Identifier">GLU_TESS_ERROR_DATA</span></a> <span class="Other">=</span> <span class="DecNumber">100109</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_EDGE_FLAG_DATA"></a>
- <dt><pre><a href="glu.html#GLU_TESS_EDGE_FLAG_DATA"><span class="Identifier">GLU_TESS_EDGE_FLAG_DATA</span></a> <span class="Other">=</span> <span class="DecNumber">100110</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_COMBINE_DATA"></a>
- <dt><pre><a href="glu.html#GLU_TESS_COMBINE_DATA"><span class="Identifier">GLU_TESS_COMBINE_DATA</span></a> <span class="Other">=</span> <span class="DecNumber">100111</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR1"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR1"><span class="Identifier">GLU_TESS_ERROR1</span></a> <span class="Other">=</span> <span class="DecNumber">100151</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR2"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR2"><span class="Identifier">GLU_TESS_ERROR2</span></a> <span class="Other">=</span> <span class="DecNumber">100152</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR3"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR3"><span class="Identifier">GLU_TESS_ERROR3</span></a> <span class="Other">=</span> <span class="DecNumber">100153</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR4"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR4"><span class="Identifier">GLU_TESS_ERROR4</span></a> <span class="Other">=</span> <span class="DecNumber">100154</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR5"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR5"><span class="Identifier">GLU_TESS_ERROR5</span></a> <span class="Other">=</span> <span class="DecNumber">100155</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR6"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR6"><span class="Identifier">GLU_TESS_ERROR6</span></a> <span class="Other">=</span> <span class="DecNumber">100156</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR7"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR7"><span class="Identifier">GLU_TESS_ERROR7</span></a> <span class="Other">=</span> <span class="DecNumber">100157</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_ERROR8"></a>
- <dt><pre><a href="glu.html#GLU_TESS_ERROR8"><span class="Identifier">GLU_TESS_ERROR8</span></a> <span class="Other">=</span> <span class="DecNumber">100158</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_MISSING_BEGIN_POLYGON"></a>
- <dt><pre><a href="glu.html#GLU_TESS_MISSING_BEGIN_POLYGON"><span class="Identifier">GLU_TESS_MISSING_BEGIN_POLYGON</span></a> <span class="Other">=</span> <span class="DecNumber">100151</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_MISSING_BEGIN_CONTOUR"></a>
- <dt><pre><a href="glu.html#GLU_TESS_MISSING_BEGIN_CONTOUR"><span class="Identifier">GLU_TESS_MISSING_BEGIN_CONTOUR</span></a> <span class="Other">=</span> <span class="DecNumber">100152</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_MISSING_END_POLYGON"></a>
- <dt><pre><a href="glu.html#GLU_TESS_MISSING_END_POLYGON"><span class="Identifier">GLU_TESS_MISSING_END_POLYGON</span></a> <span class="Other">=</span> <span class="DecNumber">100153</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_MISSING_END_CONTOUR"></a>
- <dt><pre><a href="glu.html#GLU_TESS_MISSING_END_CONTOUR"><span class="Identifier">GLU_TESS_MISSING_END_CONTOUR</span></a> <span class="Other">=</span> <span class="DecNumber">100154</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_COORD_TOO_LARGE"></a>
- <dt><pre><a href="glu.html#GLU_TESS_COORD_TOO_LARGE"><span class="Identifier">GLU_TESS_COORD_TOO_LARGE</span></a> <span class="Other">=</span> <span class="DecNumber">100155</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_TESS_NEED_COMBINE_CALLBACK"></a>
- <dt><pre><a href="glu.html#GLU_TESS_NEED_COMBINE_CALLBACK"><span class="Identifier">GLU_TESS_NEED_COMBINE_CALLBACK</span></a> <span class="Other">=</span> <span class="DecNumber">100156</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_AUTO_LOAD_MATRIX"></a>
- <dt><pre><a href="glu.html#GLU_AUTO_LOAD_MATRIX"><span class="Identifier">GLU_AUTO_LOAD_MATRIX</span></a> <span class="Other">=</span> <span class="DecNumber">100200</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_CULLING"></a>
- <dt><pre><a href="glu.html#GLU_CULLING"><span class="Identifier">GLU_CULLING</span></a> <span class="Other">=</span> <span class="DecNumber">100201</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_SAMPLING_TOLERANCE"></a>
- <dt><pre><a href="glu.html#GLU_SAMPLING_TOLERANCE"><span class="Identifier">GLU_SAMPLING_TOLERANCE</span></a> <span class="Other">=</span> <span class="DecNumber">100203</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_DISPLAY_MODE"></a>
- <dt><pre><a href="glu.html#GLU_DISPLAY_MODE"><span class="Identifier">GLU_DISPLAY_MODE</span></a> <span class="Other">=</span> <span class="DecNumber">100204</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_PARAMETRIC_TOLERANCE"></a>
- <dt><pre><a href="glu.html#GLU_PARAMETRIC_TOLERANCE"><span class="Identifier">GLU_PARAMETRIC_TOLERANCE</span></a> <span class="Other">=</span> <span class="DecNumber">100202</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_SAMPLING_METHOD"></a>
- <dt><pre><a href="glu.html#GLU_SAMPLING_METHOD"><span class="Identifier">GLU_SAMPLING_METHOD</span></a> <span class="Other">=</span> <span class="DecNumber">100205</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_U_STEP"></a>
- <dt><pre><a href="glu.html#GLU_U_STEP"><span class="Identifier">GLU_U_STEP</span></a> <span class="Other">=</span> <span class="DecNumber">100206</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_V_STEP"></a>
- <dt><pre><a href="glu.html#GLU_V_STEP"><span class="Identifier">GLU_V_STEP</span></a> <span class="Other">=</span> <span class="DecNumber">100207</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_PATH_LENGTH"></a>
- <dt><pre><a href="glu.html#GLU_PATH_LENGTH"><span class="Identifier">GLU_PATH_LENGTH</span></a> <span class="Other">=</span> <span class="DecNumber">100215</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_PARAMETRIC_ERROR"></a>
- <dt><pre><a href="glu.html#GLU_PARAMETRIC_ERROR"><span class="Identifier">GLU_PARAMETRIC_ERROR</span></a> <span class="Other">=</span> <span class="DecNumber">100216</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_DOMAIN_DISTANCE"></a>
- <dt><pre><a href="glu.html#GLU_DOMAIN_DISTANCE"><span class="Identifier">GLU_DOMAIN_DISTANCE</span></a> <span class="Other">=</span> <span class="DecNumber">100217</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_MAP1_TRIM_2"></a>
- <dt><pre><a href="glu.html#GLU_MAP1_TRIM_2"><span class="Identifier">GLU_MAP1_TRIM_2</span></a> <span class="Other">=</span> <span class="DecNumber">100210</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_MAP1_TRIM_3"></a>
- <dt><pre><a href="glu.html#GLU_MAP1_TRIM_3"><span class="Identifier">GLU_MAP1_TRIM_3</span></a> <span class="Other">=</span> <span class="DecNumber">100211</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_OUTLINE_POLYGON"></a>
- <dt><pre><a href="glu.html#GLU_OUTLINE_POLYGON"><span class="Identifier">GLU_OUTLINE_POLYGON</span></a> <span class="Other">=</span> <span class="DecNumber">100240</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_OUTLINE_PATCH"></a>
- <dt><pre><a href="glu.html#GLU_OUTLINE_PATCH"><span class="Identifier">GLU_OUTLINE_PATCH</span></a> <span class="Other">=</span> <span class="DecNumber">100241</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR1"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR1"><span class="Identifier">GLU_NURBS_ERROR1</span></a> <span class="Other">=</span> <span class="DecNumber">100251</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR2"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR2"><span class="Identifier">GLU_NURBS_ERROR2</span></a> <span class="Other">=</span> <span class="DecNumber">100252</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR3"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR3"><span class="Identifier">GLU_NURBS_ERROR3</span></a> <span class="Other">=</span> <span class="DecNumber">100253</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR4"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR4"><span class="Identifier">GLU_NURBS_ERROR4</span></a> <span class="Other">=</span> <span class="DecNumber">100254</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR5"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR5"><span class="Identifier">GLU_NURBS_ERROR5</span></a> <span class="Other">=</span> <span class="DecNumber">100255</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR6"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR6"><span class="Identifier">GLU_NURBS_ERROR6</span></a> <span class="Other">=</span> <span class="DecNumber">100256</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR7"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR7"><span class="Identifier">GLU_NURBS_ERROR7</span></a> <span class="Other">=</span> <span class="DecNumber">100257</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR8"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR8"><span class="Identifier">GLU_NURBS_ERROR8</span></a> <span class="Other">=</span> <span class="DecNumber">100258</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR9"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR9"><span class="Identifier">GLU_NURBS_ERROR9</span></a> <span class="Other">=</span> <span class="DecNumber">100259</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR10"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR10"><span class="Identifier">GLU_NURBS_ERROR10</span></a> <span class="Other">=</span> <span class="DecNumber">100260</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR11"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR11"><span class="Identifier">GLU_NURBS_ERROR11</span></a> <span class="Other">=</span> <span class="DecNumber">100261</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR12"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR12"><span class="Identifier">GLU_NURBS_ERROR12</span></a> <span class="Other">=</span> <span class="DecNumber">100262</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR13"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR13"><span class="Identifier">GLU_NURBS_ERROR13</span></a> <span class="Other">=</span> <span class="DecNumber">100263</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR14"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR14"><span class="Identifier">GLU_NURBS_ERROR14</span></a> <span class="Other">=</span> <span class="DecNumber">100264</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR15"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR15"><span class="Identifier">GLU_NURBS_ERROR15</span></a> <span class="Other">=</span> <span class="DecNumber">100265</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR16"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR16"><span class="Identifier">GLU_NURBS_ERROR16</span></a> <span class="Other">=</span> <span class="DecNumber">100266</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR17"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR17"><span class="Identifier">GLU_NURBS_ERROR17</span></a> <span class="Other">=</span> <span class="DecNumber">100267</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR18"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR18"><span class="Identifier">GLU_NURBS_ERROR18</span></a> <span class="Other">=</span> <span class="DecNumber">100268</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR19"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR19"><span class="Identifier">GLU_NURBS_ERROR19</span></a> <span class="Other">=</span> <span class="DecNumber">100269</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR20"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR20"><span class="Identifier">GLU_NURBS_ERROR20</span></a> <span class="Other">=</span> <span class="DecNumber">100270</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR21"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR21"><span class="Identifier">GLU_NURBS_ERROR21</span></a> <span class="Other">=</span> <span class="DecNumber">100271</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR22"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR22"><span class="Identifier">GLU_NURBS_ERROR22</span></a> <span class="Other">=</span> <span class="DecNumber">100272</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR23"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR23"><span class="Identifier">GLU_NURBS_ERROR23</span></a> <span class="Other">=</span> <span class="DecNumber">100273</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR24"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR24"><span class="Identifier">GLU_NURBS_ERROR24</span></a> <span class="Other">=</span> <span class="DecNumber">100274</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR25"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR25"><span class="Identifier">GLU_NURBS_ERROR25</span></a> <span class="Other">=</span> <span class="DecNumber">100275</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR26"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR26"><span class="Identifier">GLU_NURBS_ERROR26</span></a> <span class="Other">=</span> <span class="DecNumber">100276</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR27"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR27"><span class="Identifier">GLU_NURBS_ERROR27</span></a> <span class="Other">=</span> <span class="DecNumber">100277</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR28"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR28"><span class="Identifier">GLU_NURBS_ERROR28</span></a> <span class="Other">=</span> <span class="DecNumber">100278</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR29"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR29"><span class="Identifier">GLU_NURBS_ERROR29</span></a> <span class="Other">=</span> <span class="DecNumber">100279</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR30"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR30"><span class="Identifier">GLU_NURBS_ERROR30</span></a> <span class="Other">=</span> <span class="DecNumber">100280</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR31"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR31"><span class="Identifier">GLU_NURBS_ERROR31</span></a> <span class="Other">=</span> <span class="DecNumber">100281</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR32"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR32"><span class="Identifier">GLU_NURBS_ERROR32</span></a> <span class="Other">=</span> <span class="DecNumber">100282</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR33"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR33"><span class="Identifier">GLU_NURBS_ERROR33</span></a> <span class="Other">=</span> <span class="DecNumber">100283</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR34"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR34"><span class="Identifier">GLU_NURBS_ERROR34</span></a> <span class="Other">=</span> <span class="DecNumber">100284</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR35"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR35"><span class="Identifier">GLU_NURBS_ERROR35</span></a> <span class="Other">=</span> <span class="DecNumber">100285</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR36"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR36"><span class="Identifier">GLU_NURBS_ERROR36</span></a> <span class="Other">=</span> <span class="DecNumber">100286</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_NURBS_ERROR37"></a>
- <dt><pre><a href="glu.html#GLU_NURBS_ERROR37"><span class="Identifier">GLU_NURBS_ERROR37</span></a> <span class="Other">=</span> <span class="DecNumber">100287</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_CW"></a>
- <dt><pre><a href="glu.html#GLU_CW"><span class="Identifier">GLU_CW</span></a> <span class="Other">=</span> <span class="DecNumber">100120</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_CCW"></a>
- <dt><pre><a href="glu.html#GLU_CCW"><span class="Identifier">GLU_CCW</span></a> <span class="Other">=</span> <span class="DecNumber">100121</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_INTERIOR"></a>
- <dt><pre><a href="glu.html#GLU_INTERIOR"><span class="Identifier">GLU_INTERIOR</span></a> <span class="Other">=</span> <span class="DecNumber">100122</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_EXTERIOR"></a>
- <dt><pre><a href="glu.html#GLU_EXTERIOR"><span class="Identifier">GLU_EXTERIOR</span></a> <span class="Other">=</span> <span class="DecNumber">100123</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_UNKNOWN"></a>
- <dt><pre><a href="glu.html#GLU_UNKNOWN"><span class="Identifier">GLU_UNKNOWN</span></a> <span class="Other">=</span> <span class="DecNumber">100124</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_BEGIN"></a>
- <dt><pre><a href="glu.html#GLU_BEGIN"><span class="Identifier">GLU_BEGIN</span></a> <span class="Other">=</span> <span class="DecNumber">100100</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_VERTEX"></a>
- <dt><pre><a href="glu.html#GLU_VERTEX"><span class="Identifier">GLU_VERTEX</span></a> <span class="Other">=</span> <span class="DecNumber">100101</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_END"></a>
- <dt><pre><a href="glu.html#GLU_END"><span class="Identifier">GLU_END</span></a> <span class="Other">=</span> <span class="DecNumber">100102</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_ERROR"></a>
- <dt><pre><a href="glu.html#GLU_ERROR"><span class="Identifier">GLU_ERROR</span></a> <span class="Other">=</span> <span class="DecNumber">100103</span></pre></dt>
- <dd>
- </dd>
- <a id="GLU_EDGE_FLAG"></a>
- <dt><pre><a href="glu.html#GLU_EDGE_FLAG"><span class="Identifier">GLU_EDGE_FLAG</span></a> <span class="Other">=</span> <span class="DecNumber">100104</span></pre></dt>
- <dd>
- </dd>
- </dl></div>
- <div class="section" id="12">
- <h1><a class="toc-backref" href="#12">Procs</a></h1>
- <dl class="item">
- <a id="gluErrorString,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluErrorString%2CGLenum"><span class="Identifier">gluErrorString</span></a><span class="Other">(</span><span class="Identifier">errCode</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">cstring</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluErrorString"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluGetString,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluGetString%2CGLenum"><span class="Identifier">gluGetString</span></a><span class="Other">(</span><span class="Identifier">name</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">cstring</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluGetString"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluOrtho2D,GLdouble,GLdouble,GLdouble,GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluOrtho2D%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble"><span class="Identifier">gluOrtho2D</span></a><span class="Other">(</span><span class="Identifier">left</span><span class="Other">,</span> <span class="Identifier">right</span><span class="Other">,</span> <span class="Identifier">bottom</span><span class="Other">,</span> <span class="Identifier">top</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluOrtho2D"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluPerspective,GLdouble,GLdouble,GLdouble,GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluPerspective%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble"><span class="Identifier">gluPerspective</span></a><span class="Other">(</span><span class="Identifier">fovy</span><span class="Other">,</span> <span class="Identifier">aspect</span><span class="Other">,</span> <span class="Identifier">zNear</span><span class="Other">,</span> <span class="Identifier">zFar</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluPerspective"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluPickMatrix,GLdouble,GLdouble,GLdouble,GLdouble,ViewPortArray"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluPickMatrix%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CViewPortArray"><span class="Identifier">gluPickMatrix</span></a><span class="Other">(</span><span class="Identifier">x</span><span class="Other">,</span> <span class="Identifier">y</span><span class="Other">,</span> <span class="Identifier">width</span><span class="Other">,</span> <span class="Identifier">height</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span> <span class="Identifier">viewport</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#ViewPortArray"><span class="Identifier">ViewPortArray</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluPickMatrix"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluLookAt,GLdouble,GLdouble,GLdouble,GLdouble,GLdouble,GLdouble,GLdouble,GLdouble,GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluLookAt%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble%2CGLdouble"><span class="Identifier">gluLookAt</span></a><span class="Other">(</span><span class="Identifier">eyex</span><span class="Other">,</span> <span class="Identifier">eyey</span><span class="Other">,</span> <span class="Identifier">eyez</span><span class="Other">,</span> <span class="Identifier">centerx</span><span class="Other">,</span> <span class="Identifier">centery</span><span class="Other">,</span> <span class="Identifier">centerz</span><span class="Other">,</span> <span class="Identifier">upx</span><span class="Other">,</span> <span class="Identifier">upy</span><span class="Other">,</span> <span class="Identifier">upz</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluLookAt"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluProject,GLdouble,GLdouble,GLdouble,T16dArray,T16dArray,ViewPortArray,ptr.GLdouble,ptr.GLdouble,ptr.GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluProject%2CGLdouble%2CGLdouble%2CGLdouble%2CT16dArray%2CT16dArray%2CViewPortArray%2Cptr.GLdouble%2Cptr.GLdouble%2Cptr.GLdouble"><span class="Identifier">gluProject</span></a><span class="Other">(</span><span class="Identifier">objx</span><span class="Other">,</span> <span class="Identifier">objy</span><span class="Other">,</span> <span class="Identifier">objz</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span> <span class="Identifier">modelMatrix</span><span class="Other">,</span> <span class="Identifier">projMatrix</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T16dArray"><span class="Identifier">T16dArray</span></a><span class="Other">;</span>
- <span class="Identifier">viewport</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#ViewPortArray"><span class="Identifier">ViewPortArray</span></a><span class="Other">;</span> <span class="Identifier">winx</span><span class="Other">,</span> <span class="Identifier">winy</span><span class="Other">,</span> <span class="Identifier">winz</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">int</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluProject"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluUnProject,GLdouble,GLdouble,GLdouble,T16dArray,T16dArray,ViewPortArray,ptr.GLdouble,ptr.GLdouble,ptr.GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluUnProject%2CGLdouble%2CGLdouble%2CGLdouble%2CT16dArray%2CT16dArray%2CViewPortArray%2Cptr.GLdouble%2Cptr.GLdouble%2Cptr.GLdouble"><span class="Identifier">gluUnProject</span></a><span class="Other">(</span><span class="Identifier">winx</span><span class="Other">,</span> <span class="Identifier">winy</span><span class="Other">,</span> <span class="Identifier">winz</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span> <span class="Identifier">modelMatrix</span><span class="Other">,</span> <span class="Identifier">projMatrix</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T16dArray"><span class="Identifier">T16dArray</span></a><span class="Other">;</span>
- <span class="Identifier">viewport</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#ViewPortArray"><span class="Identifier">ViewPortArray</span></a><span class="Other">;</span> <span class="Identifier">objx</span><span class="Other">,</span> <span class="Identifier">objy</span><span class="Other">,</span> <span class="Identifier">objz</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">int</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluUnProject"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluScaleImage,GLenum,GLint,GLint,GLenum,pointer,GLint,GLint,GLenum,pointer"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluScaleImage%2CGLenum%2CGLint%2CGLint%2CGLenum%2Cpointer%2CGLint%2CGLint%2CGLenum%2Cpointer"><span class="Identifier">gluScaleImage</span></a><span class="Other">(</span><span class="Identifier">format</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">widthin</span><span class="Other">,</span> <span class="Identifier">heightin</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">typein</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span>
- <span class="Identifier">datain</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">;</span> <span class="Identifier">widthout</span><span class="Other">,</span> <span class="Identifier">heightout</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">typeout</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span>
- <span class="Identifier">dataout</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">int</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluScaleImage"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluBuild1DMipmaps,GLenum,GLint,GLint,GLenum,GLenum,pointer"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluBuild1DMipmaps%2CGLenum%2CGLint%2CGLint%2CGLenum%2CGLenum%2Cpointer"><span class="Identifier">gluBuild1DMipmaps</span></a><span class="Other">(</span><span class="Identifier">target</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">components</span><span class="Other">,</span> <span class="Identifier">width</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span>
- <span class="Identifier">format</span><span class="Other">,</span> <span class="Identifier">atype</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">data</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">int</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluBuild1DMipmaps"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluBuild2DMipmaps,GLenum,GLint,GLint,GLint,GLenum,GLenum,pointer"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluBuild2DMipmaps%2CGLenum%2CGLint%2CGLint%2CGLint%2CGLenum%2CGLenum%2Cpointer"><span class="Identifier">gluBuild2DMipmaps</span></a><span class="Other">(</span><span class="Identifier">target</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">components</span><span class="Other">,</span> <span class="Identifier">width</span><span class="Other">,</span> <span class="Identifier">height</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span>
- <span class="Identifier">format</span><span class="Other">,</span> <span class="Identifier">atype</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">data</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">int</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluBuild2DMipmaps"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNewQuadric"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNewQuadric"><span class="Identifier">gluNewQuadric</span></a><span class="Other">(</span><span class="Other">)</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNewQuadric"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluDeleteQuadric,GLUquadric"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluDeleteQuadric%2CGLUquadric"><span class="Identifier">gluDeleteQuadric</span></a><span class="Other">(</span><span class="Identifier">state</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluDeleteQuadric"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluQuadricNormals,GLUquadric,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluQuadricNormals%2CGLUquadric%2CGLenum"><span class="Identifier">gluQuadricNormals</span></a><span class="Other">(</span><span class="Identifier">quadObject</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">normals</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluQuadricNormals"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluQuadricTexture,GLUquadric,GLboolean"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluQuadricTexture%2CGLUquadric%2CGLboolean"><span class="Identifier">gluQuadricTexture</span></a><span class="Other">(</span><span class="Identifier">quadObject</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">textureCoords</span><span class="Other">:</span> <a href="../opengl.html#GLboolean"><span class="Identifier">GLboolean</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluQuadricTexture"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluQuadricOrientation,GLUquadric,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluQuadricOrientation%2CGLUquadric%2CGLenum"><span class="Identifier">gluQuadricOrientation</span></a><span class="Other">(</span><span class="Identifier">quadObject</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">orientation</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluQuadricOrientation"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluQuadricDrawStyle,GLUquadric,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluQuadricDrawStyle%2CGLUquadric%2CGLenum"><span class="Identifier">gluQuadricDrawStyle</span></a><span class="Other">(</span><span class="Identifier">quadObject</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">drawStyle</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluQuadricDrawStyle"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluCylinder,GLUquadric,GLdouble,GLdouble,GLdouble,GLint,GLint"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluCylinder%2CGLUquadric%2CGLdouble%2CGLdouble%2CGLdouble%2CGLint%2CGLint"><span class="Identifier">gluCylinder</span></a><span class="Other">(</span><span class="Identifier">qobj</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">baseRadius</span><span class="Other">,</span> <span class="Identifier">topRadius</span><span class="Other">,</span> <span class="Identifier">height</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span>
- <span class="Identifier">slices</span><span class="Other">,</span> <span class="Identifier">stacks</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluCylinder"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluDisk,GLUquadric,GLdouble,GLdouble,GLint,GLint"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluDisk%2CGLUquadric%2CGLdouble%2CGLdouble%2CGLint%2CGLint"><span class="Identifier">gluDisk</span></a><span class="Other">(</span><span class="Identifier">qobj</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">innerRadius</span><span class="Other">,</span> <span class="Identifier">outerRadius</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span>
- <span class="Identifier">slices</span><span class="Other">,</span> <span class="Identifier">loops</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluDisk"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluPartialDisk,GLUquadric,GLdouble,GLdouble,GLint,GLint,GLdouble,GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluPartialDisk%2CGLUquadric%2CGLdouble%2CGLdouble%2CGLint%2CGLint%2CGLdouble%2CGLdouble"><span class="Identifier">gluPartialDisk</span></a><span class="Other">(</span><span class="Identifier">qobj</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">innerRadius</span><span class="Other">,</span> <span class="Identifier">outerRadius</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span>
- <span class="Identifier">slices</span><span class="Other">,</span> <span class="Identifier">loops</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">startAngle</span><span class="Other">,</span> <span class="Identifier">sweepAngle</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluPartialDisk"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluSphere,GLUquadric,GLdouble,GLint,GLint"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluSphere%2CGLUquadric%2CGLdouble%2CGLint%2CGLint"><span class="Identifier">gluSphere</span></a><span class="Other">(</span><span class="Identifier">qobj</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">radius</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">;</span> <span class="Identifier">slices</span><span class="Other">,</span> <span class="Identifier">stacks</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluSphere"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluQuadricCallback,GLUquadric,GLenum,CallBack"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluQuadricCallback%2CGLUquadric%2CGLenum%2CCallBack"><span class="Identifier">gluQuadricCallback</span></a><span class="Other">(</span><span class="Identifier">qobj</span><span class="Other">:</span> <a href="glu.html#GLUquadric"><span class="Identifier">GLUquadric</span></a><span class="Other">;</span> <span class="Identifier">which</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">fn</span><span class="Other">:</span> <a href="glu.html#CallBack"><span class="Identifier">CallBack</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluQuadricCallback"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNewTess"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNewTess"><span class="Identifier">gluNewTess</span></a><span class="Other">(</span><span class="Other">)</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNewTess"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluDeleteTess,GLUtesselator"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluDeleteTess%2CGLUtesselator"><span class="Identifier">gluDeleteTess</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluDeleteTess"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessBeginPolygon,GLUtesselator,pointer"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessBeginPolygon%2CGLUtesselator%2Cpointer"><span class="Identifier">gluTessBeginPolygon</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">polygon_data</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessBeginPolygon"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessBeginContour,GLUtesselator"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessBeginContour%2CGLUtesselator"><span class="Identifier">gluTessBeginContour</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessBeginContour"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessVertex,GLUtesselator,T3dArray,pointer"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessVertex%2CGLUtesselator%2CT3dArray%2Cpointer"><span class="Identifier">gluTessVertex</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">coords</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T3dArray"><span class="Identifier">T3dArray</span></a><span class="Other">;</span> <span class="Identifier">data</span><span class="Other">:</span> <span class="Identifier">pointer</span><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessVertex"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessEndContour,GLUtesselator"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessEndContour%2CGLUtesselator"><span class="Identifier">gluTessEndContour</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessEndContour"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessEndPolygon,GLUtesselator"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessEndPolygon%2CGLUtesselator"><span class="Identifier">gluTessEndPolygon</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessEndPolygon"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessProperty,GLUtesselator,GLenum,GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessProperty%2CGLUtesselator%2CGLenum%2CGLdouble"><span class="Identifier">gluTessProperty</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">which</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">value</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessProperty"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessNormal,GLUtesselator,GLdouble,GLdouble,GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessNormal%2CGLUtesselator%2CGLdouble%2CGLdouble%2CGLdouble"><span class="Identifier">gluTessNormal</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">x</span><span class="Other">,</span> <span class="Identifier">y</span><span class="Other">,</span> <span class="Identifier">z</span><span class="Other">:</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessNormal"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluTessCallback,GLUtesselator,GLenum,CallBack"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluTessCallback%2CGLUtesselator%2CGLenum%2CCallBack"><span class="Identifier">gluTessCallback</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">which</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">fn</span><span class="Other">:</span> <a href="glu.html#CallBack"><span class="Identifier">CallBack</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluTessCallback"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluGetTessProperty,GLUtesselator,GLenum,ptr.GLdouble"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluGetTessProperty%2CGLUtesselator%2CGLenum%2Cptr.GLdouble"><span class="Identifier">gluGetTessProperty</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">which</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">value</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLdouble"><span class="Identifier">GLdouble</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluGetTessProperty"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNewNurbsRenderer"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNewNurbsRenderer"><span class="Identifier">gluNewNurbsRenderer</span></a><span class="Other">(</span><span class="Other">)</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNewNurbsRenderer"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluDeleteNurbsRenderer,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluDeleteNurbsRenderer%2CGLUnurbs"><span class="Identifier">gluDeleteNurbsRenderer</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluDeleteNurbsRenderer"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluBeginSurface,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluBeginSurface%2CGLUnurbs"><span class="Identifier">gluBeginSurface</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluBeginSurface"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluBeginCurve,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluBeginCurve%2CGLUnurbs"><span class="Identifier">gluBeginCurve</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluBeginCurve"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluEndCurve,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluEndCurve%2CGLUnurbs"><span class="Identifier">gluEndCurve</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluEndCurve"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluEndSurface,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluEndSurface%2CGLUnurbs"><span class="Identifier">gluEndSurface</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluEndSurface"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluBeginTrim,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluBeginTrim%2CGLUnurbs"><span class="Identifier">gluBeginTrim</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluBeginTrim"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluEndTrim,GLUnurbs"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluEndTrim%2CGLUnurbs"><span class="Identifier">gluEndTrim</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluEndTrim"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluPwlCurve,GLUnurbs,GLint,ptr.GLfloat,GLint,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluPwlCurve%2CGLUnurbs%2CGLint%2Cptr.GLfloat%2CGLint%2CGLenum"><span class="Identifier">gluPwlCurve</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span> <span class="Identifier">count</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">aarray</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">;</span> <span class="Identifier">stride</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span>
- <span class="Identifier">atype</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluPwlCurve"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNurbsCurve,GLUnurbs,GLint,ptr.GLfloat,GLint,ptr.GLfloat,GLint,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNurbsCurve%2CGLUnurbs%2CGLint%2Cptr.GLfloat%2CGLint%2Cptr.GLfloat%2CGLint%2CGLenum"><span class="Identifier">gluNurbsCurve</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span> <span class="Identifier">nknots</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">knot</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">;</span> <span class="Identifier">stride</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span>
- <span class="Identifier">ctlarray</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">;</span> <span class="Identifier">order</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">atype</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNurbsCurve"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNurbsSurface,GLUnurbs,GLint,ptr.GLfloat,GLint,ptr.GLfloat,GLint,GLint,ptr.GLfloat,GLint,GLint,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNurbsSurface%2CGLUnurbs%2CGLint%2Cptr.GLfloat%2CGLint%2Cptr.GLfloat%2CGLint%2CGLint%2Cptr.GLfloat%2CGLint%2CGLint%2CGLenum"><span class="Identifier">gluNurbsSurface</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span> <span class="Identifier">sknot_count</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">sknot</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">;</span>
- <span class="Identifier">tknot_count</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">tknot</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">;</span>
- <span class="Identifier">s_stride</span><span class="Other">,</span> <span class="Identifier">t_stride</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">ctlarray</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">;</span>
- <span class="Identifier">sorder</span><span class="Other">,</span> <span class="Identifier">torder</span><span class="Other">:</span> <a href="../opengl.html#GLint"><span class="Identifier">GLint</span></a><span class="Other">;</span> <span class="Identifier">atype</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNurbsSurface"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluLoadSamplingMatrices,GLUnurbs,T16dArray,T16dArray,ViewPortArray"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluLoadSamplingMatrices%2CGLUnurbs%2CT16dArray%2CT16dArray%2CViewPortArray"><span class="Identifier">gluLoadSamplingMatrices</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span>
- <span class="Identifier">modelMatrix</span><span class="Other">,</span> <span class="Identifier">projMatrix</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#T16dArray"><span class="Identifier">T16dArray</span></a><span class="Other">;</span>
- <span class="Identifier">viewport</span><span class="Other">:</span> <span class="Keyword">var</span> <a href="glu.html#ViewPortArray"><span class="Identifier">ViewPortArray</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluLoadSamplingMatrices"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNurbsProperty,GLUnurbs,GLenum,GLfloat"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNurbsProperty%2CGLUnurbs%2CGLenum%2CGLfloat"><span class="Identifier">gluNurbsProperty</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span> <span class="Identifier">aproperty</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">value</span><span class="Other">:</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNurbsProperty"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluGetNurbsProperty,GLUnurbs,GLenum,ptr.GLfloat"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluGetNurbsProperty%2CGLUnurbs%2CGLenum%2Cptr.GLfloat"><span class="Identifier">gluGetNurbsProperty</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span> <span class="Identifier">aproperty</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">value</span><span class="Other">:</span> <span class="Keyword">ptr</span> <a href="../opengl.html#GLfloat"><span class="Identifier">GLfloat</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma">
- <span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluGetNurbsProperty"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNurbsCallback,GLUnurbs,GLenum,CallBack"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNurbsCallback%2CGLUnurbs%2CGLenum%2CCallBack"><span class="Identifier">gluNurbsCallback</span></a><span class="Other">(</span><span class="Identifier">nobj</span><span class="Other">:</span> <a href="glu.html#GLUnurbs"><span class="Identifier">GLUnurbs</span></a><span class="Other">;</span> <span class="Identifier">which</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">;</span> <span class="Identifier">fn</span><span class="Other">:</span> <a href="glu.html#CallBack"><span class="Identifier">CallBack</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNurbsCallback"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluBeginPolygon,GLUtesselator"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluBeginPolygon%2CGLUtesselator"><span class="Identifier">gluBeginPolygon</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluBeginPolygon"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluNextContour,GLUtesselator,GLenum"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluNextContour%2CGLUtesselator%2CGLenum"><span class="Identifier">gluNextContour</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">;</span> <span class="Identifier">atype</span><span class="Other">:</span> <a href="../opengl.html#GLenum"><span class="Identifier">GLenum</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span>
- <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluNextContour"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- <a id="gluEndPolygon,GLUtesselator"></a>
- <dt><pre><span class="Keyword">proc</span> <a href="#gluEndPolygon%2CGLUtesselator"><span class="Identifier">gluEndPolygon</span></a><span class="Other">(</span><span class="Identifier">tess</span><span class="Other">:</span> <a href="glu.html#GLUtesselator"><span class="Identifier">GLUtesselator</span></a><span class="Other">)</span> <span><span class="Other">{</span><span class="Other pragmadots">...</span><span class="Other">}</span></span><span class="pragmawrap"><span class="Other">{.</span><span class="pragma"><span class="Identifier">dynlib</span><span class="Other">:</span> <span class="Identifier">dllname</span><span class="Other">,</span> <span class="Identifier">importc</span><span class="Other">:</span> <span class="StringLit">"gluEndPolygon"</span></span><span class="Other">.}</span></span></pre></dt>
- <dd>
- </dd>
- </dl></div>
- </div>
- </div>
- <div class="row">
- <div class="twelve-columns footer">
- <span class="nim-sprite"></span>
- <br/>
- <small style="color: var(--hint);">Made with Nim. Generated: 2021-11-03 16:19:02 UTC</small>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|