Path: blob/master/Resources/taoframework-2.1.0/bin/Tao.Platform.X11.xml
178 views
<?xml version="1.0"?>1<doc>2<assembly>3<name>Tao.Platform.X11</name>4</assembly>5<members>6<member name="M:Tao.Platform.X11.API.Free(System.IntPtr)">7<summary>8Frees the memory used by an X structure. Only use on unmanaged structures!9</summary>10<param name="data">A pointer to the structure that will be freed.</param>11</member>12<member name="M:Tao.Platform.X11.API.SelectInput(System.IntPtr,System.IntPtr,Tao.Platform.X11.EventMask)">13<summary>14The XSelectInput() function requests that the X server report the events associated15with the specified event mask.16</summary>17<param name="display">Specifies the connection to the X server.</param>18<param name="w">Specifies the window whose events you are interested in.</param>19<param name="event_mask">Specifies the event mask.</param>20<remarks>21Initially, X will not report any of these events.22Events are reported relative to a window.23If a window is not interested in a device event,24it usually propagates to the closest ancestor that is interested,25unless the do_not_propagate mask prohibits it.26Setting the event-mask attribute of a window overrides any previous call for the same window but not for other clients. Multiple clients can select for the same events on the same window with the following restrictions:27<para>Multiple clients can select events on the same window because their event masks are disjoint. When the X server generates an event, it reports it to all interested clients. </para>28<para>Only one client at a time can select CirculateRequest, ConfigureRequest, or MapRequest events, which are associated with the event mask SubstructureRedirectMask. </para>29<para>Only one client at a time can select a ResizeRequest event, which is associated with the event mask ResizeRedirectMask. </para>30<para>Only one client at a time can select a ButtonPress event, which is associated with the event mask ButtonPressMask. </para>31<para>The server reports the event to all interested clients. </para>32<para>XSelectInput() can generate a BadWindow error.</para>33</remarks>34</member>35<member name="M:Tao.Platform.X11.API.CheckIfEvent(System.IntPtr,Tao.Platform.X11.XEvent@,Tao.Platform.X11.API.CheckEventPredicate,System.IntPtr)">36<summary>37When the predicate procedure finds a match, XCheckIfEvent() copies the matched event into the client-supplied XEvent structure and returns True. (This event is removed from the queue.) If the predicate procedure finds no match, XCheckIfEvent() returns False, and the output buffer will have been flushed. All earlier events stored in the queue are not discarded.38</summary>39<param name="display">Specifies the connection to the X server.</param>40<param name="event_return">Returns a copy of the matched event's associated structure.</param>41<param name="predicate">Specifies the procedure that is to be called to determine if the next event in the queue matches what you want</param>42<param name="arg">Specifies the user-supplied argument that will be passed to the predicate procedure.</param>43<returns>true if the predicate returns true for some event, false otherwise</returns>44</member>45<member name="M:Tao.Platform.X11.API.GetKeyboardMapping(System.IntPtr,System.Byte,System.Int32,System.Int32@)">46<summary>47The XGetKeyboardMapping() function returns the symbols for the specified number of KeyCodes starting with first_keycode.48</summary>49<param name="display">Specifies the connection to the X server.</param>50<param name="first_keycode">Specifies the first KeyCode that is to be returned.</param>51<param name="keycode_count">Specifies the number of KeyCodes that are to be returned</param>52<param name="keysyms_per_keycode_return">Returns the number of KeySyms per KeyCode.</param>53<returns></returns>54<remarks>55<para>The value specified in first_keycode must be greater than or equal to min_keycode as returned by XDisplayKeycodes(), or a BadValue error results. In addition, the following expression must be less than or equal to max_keycode as returned by XDisplayKeycodes(): </para>56<para>first_keycode + keycode_count - 1 </para>57<para>If this is not the case, a BadValue error results. The number of elements in the KeySyms list is: </para>58<para>keycode_count * keysyms_per_keycode_return </para>59<para>KeySym number N, counting from zero, for KeyCode K has the following index in the list, counting from zero: </para>60<para> (K - first_code) * keysyms_per_code_return + N </para>61<para>The X server arbitrarily chooses the keysyms_per_keycode_return value to be large enough to report all requested symbols. A special KeySym value of NoSymbol is used to fill in unused elements for individual KeyCodes. To free the storage returned by XGetKeyboardMapping(), use XFree(). </para>62<para>XGetKeyboardMapping() can generate a BadValue error.</para>63<para>Diagnostics:</para>64<para>BadValue: Some numeric value falls outside the range of values accepted by the request. Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument defined as a set of alternatives can generate this error.</para>65</remarks>66</member>67<member name="M:Tao.Platform.X11.API.DisplayKeycodes(System.IntPtr,System.Int32@,System.Int32@)">68<summary>69The XDisplayKeycodes() function returns the min-keycodes and max-keycodes supported by the specified display.70</summary>71<param name="display">Specifies the connection to the X server.</param>72<param name="min_keycodes_return">Returns the minimum number of KeyCodes</param>73<param name="max_keycodes_return">Returns the maximum number of KeyCodes.</param>74<remarks> The minimum number of KeyCodes returned is never less than 8, and the maximum number of KeyCodes returned is never greater than 255. Not all KeyCodes in this range are required to have corresponding keys.</remarks>75</member>76<member name="T:Tao.Platform.X11.API.XF86VidModeModeInfo">77<summary>78Specifies an XF86 display mode.79</summary>80</member>81<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.dotclock">82<summary>83Pixel clock.84</summary>85</member>86<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.hdisplay">87<summary>88Number of display pixels horizontally89</summary>90</member>91<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.hsyncstart">92<summary>93Horizontal sync start94</summary>95</member>96<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.hsyncend">97<summary>98Horizontal sync end99</summary>100</member>101<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.htotal">102<summary>103Total horizontal pixel104</summary>105</member>106<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.hskew">107<summary>108109</summary>110</member>111<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.vdisplay">112<summary>113Number of display pixels vertically114</summary>115</member>116<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.vsyncstart">117<summary>118Vertical sync start119</summary>120</member>121<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.vsyncend">122<summary>123Vertical sync end124</summary>125</member>126<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.vtotal">127<summary>128Total vertical pixels129</summary>130</member>131<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.vskew">132<summary>133134</summary>135</member>136<member name="F:Tao.Platform.X11.API.XF86VidModeModeInfo.flags">137<summary>138Mode flags139</summary>140</member>141<member name="T:Tao.Platform.X11.VisualInfo">142<summary>143144</summary>145</member>146<member name="M:Tao.Platform.X11.VisualInfo.ToString">147<summary>148149</summary>150<returns></returns>151</member>152<member name="F:Tao.Platform.X11.SetWindowAttributes.background_pixmap">153<summary>154background, None, or ParentRelative155</summary>156</member>157<member name="F:Tao.Platform.X11.SetWindowAttributes.background_pixel">158<summary>159background pixel160</summary>161</member>162<member name="F:Tao.Platform.X11.SetWindowAttributes.border_pixmap">163<summary>164border of the window or CopyFromParent165</summary>166</member>167<member name="F:Tao.Platform.X11.SetWindowAttributes.border_pixel">168<summary>169border pixel value170</summary>171</member>172<member name="F:Tao.Platform.X11.SetWindowAttributes.bit_gravity">173<summary>174one of bit gravity values175</summary>176</member>177<member name="F:Tao.Platform.X11.SetWindowAttributes.win_gravity">178<summary>179one of the window gravity values180</summary>181</member>182<member name="F:Tao.Platform.X11.SetWindowAttributes.backing_store">183<summary>184NotUseful, WhenMapped, Always185</summary>186</member>187<member name="F:Tao.Platform.X11.SetWindowAttributes.backing_planes">188<summary>189planes to be preserved if possible190</summary>191</member>192<member name="F:Tao.Platform.X11.SetWindowAttributes.backing_pixel">193<summary>194value to use in restoring planes195</summary>196</member>197<member name="F:Tao.Platform.X11.SetWindowAttributes.save_under">198<summary>199should bits under be saved? (popups)200</summary>201</member>202<member name="F:Tao.Platform.X11.SetWindowAttributes.event_mask">203<summary>204set of events that should be saved205</summary>206</member>207<member name="F:Tao.Platform.X11.SetWindowAttributes.do_not_propagate_mask">208<summary>209set of events that should not propagate210</summary>211</member>212<member name="F:Tao.Platform.X11.SetWindowAttributes.override_redirect">213<summary>214boolean value for override_redirect215</summary>216</member>217<member name="F:Tao.Platform.X11.SetWindowAttributes.colormap">218<summary>219color map to be associated with window220</summary>221</member>222<member name="F:Tao.Platform.X11.SetWindowAttributes.cursor">223<summary>224cursor to be displayed (or None)225</summary>226</member>227<member name="T:Tao.Platform.X11.XKey">228<summary>229Defines LATIN-1 and miscellaneous keys.230</summary>231</member>232<member name="T:Tao.Platform.X11.XVisualInfo">233<summary>234235</summary>236</member>237<member name="F:Tao.Platform.X11.XVisualInfo.visual">238<summary>239240</summary>241</member>242<member name="F:Tao.Platform.X11.XVisualInfo.visualid">243<summary>244245</summary>246</member>247<member name="F:Tao.Platform.X11.XVisualInfo.screen">248<summary>249250</summary>251</member>252<member name="F:Tao.Platform.X11.XVisualInfo.depth">253<summary>254255</summary>256</member>257<member name="F:Tao.Platform.X11.XVisualInfo.class">258<summary>259260</summary>261</member>262<member name="F:Tao.Platform.X11.XVisualInfo.redMask">263<summary>264265</summary>266</member>267<member name="F:Tao.Platform.X11.XVisualInfo.greenMask">268<summary>269270</summary>271</member>272<member name="F:Tao.Platform.X11.XVisualInfo.blueMask">273<summary>274275</summary>276</member>277<member name="F:Tao.Platform.X11.XVisualInfo.colormap_size">278<summary>279280</summary>281</member>282<member name="F:Tao.Platform.X11.XVisualInfo.bits_per_rgb">283<summary>284285</summary>286</member>287<member name="M:Tao.Platform.X11.XVisualInfo.ToString">288<summary>289290</summary>291<returns></returns>292</member>293<member name="T:Tao.Platform.X11.XVisualClass">294<summary>295296</summary>297</member>298<member name="F:Tao.Platform.X11.XVisualClass.StaticGray">299<summary>300301</summary>302</member>303<member name="F:Tao.Platform.X11.XVisualClass.GrayScale">304<summary>305306</summary>307</member>308<member name="F:Tao.Platform.X11.XVisualClass.StaticColor">309<summary>310311</summary>312</member>313<member name="F:Tao.Platform.X11.XVisualClass.PseudoColor">314<summary>315316</summary>317</member>318<member name="F:Tao.Platform.X11.XVisualClass.TrueColor">319<summary>320321</summary>322</member>323<member name="F:Tao.Platform.X11.XVisualClass.DirectColor">324<summary>325326</summary>327</member>328<member name="T:Tao.Platform.X11.Glx">329<summary>330GLX (OpenGL XWindow Extensions) binding for .NET, implementing GLX 1.4.331</summary>332<remarks>333<para>334Binds functions and definitions in libGL.so.335</para>336<para>337The OpenGL XWindow Extensions (GLX) library contains several groups of functions that338complement the core OpenGL interface by providing integration with XWindows.339</para>340<para>341These utility functions make use of core OpenGL functions, so any OpenGL342implementation is guaranteed to support the utility functions.343</para>344</remarks>345</member>346<member name="F:Tao.Platform.X11.Glx.LIBGL">347<summary>348Specifies the library the functions are located in.349</summary>350</member>351<member name="F:Tao.Platform.X11.Glx.CALLING_CONVENTION">352<summary>353Specifies the calling convention.354</summary>355<remarks>356Specifies <see cref="F:System.Runtime.InteropServices.CallingConvention.Winapi"/> for Windows and357Linux, to indicate that the default should be used.358</remarks>359</member>360<member name="F:Tao.Platform.X11.Glx.GLX_VERSION_1_1">361<summary>362363</summary>364</member>365<member name="F:Tao.Platform.X11.Glx.GLX_VERSION_1_2">366<summary>367368</summary>369</member>370<member name="F:Tao.Platform.X11.Glx.GLX_VERSION_1_3">371<summary>372373</summary>374</member>375<member name="F:Tao.Platform.X11.Glx.GLX_VERSION_1_4">376<summary>377378</summary>379</member>380<member name="F:Tao.Platform.X11.Glx.GLX_USE_GL">381<summary>382383</summary>384</member>385<member name="F:Tao.Platform.X11.Glx.GLX_BUFFER_SIZE">386<summary>387388</summary>389</member>390<member name="F:Tao.Platform.X11.Glx.GLX_LEVEL">391<summary>392393</summary>394</member>395<member name="F:Tao.Platform.X11.Glx.GLX_RGBA">396<summary>397398</summary>399</member>400<member name="F:Tao.Platform.X11.Glx.GLX_DOUBLEBUFFER">401<summary>402403</summary>404</member>405<member name="F:Tao.Platform.X11.Glx.GLX_STEREO">406<summary>407408</summary>409</member>410<member name="F:Tao.Platform.X11.Glx.GLX_AUX_BUFFERS">411<summary>412413</summary>414</member>415<member name="F:Tao.Platform.X11.Glx.GLX_RED_SIZE">416<summary>417418</summary>419</member>420<member name="F:Tao.Platform.X11.Glx.GLX_GREEN_SIZE">421<summary>422423</summary>424</member>425<member name="F:Tao.Platform.X11.Glx.GLX_BLUE_SIZE">426<summary>427428</summary>429</member>430<member name="F:Tao.Platform.X11.Glx.GLX_ALPHA_SIZE">431<summary>432433</summary>434</member>435<member name="F:Tao.Platform.X11.Glx.GLX_DEPTH_SIZE">436<summary>437438</summary>439</member>440<member name="F:Tao.Platform.X11.Glx.GLX_STENCIL_SIZE">441<summary>442443</summary>444</member>445<member name="F:Tao.Platform.X11.Glx.GLX_ACCUM_RED_SIZE">446<summary>447448</summary>449</member>450<member name="F:Tao.Platform.X11.Glx.GLX_ACCUM_GREEN_SIZE">451<summary>452453</summary>454</member>455<member name="F:Tao.Platform.X11.Glx.GLX_ACCUM_BLUE_SIZE">456<summary>457458</summary>459</member>460<member name="F:Tao.Platform.X11.Glx.GLX_ACCUM_ALPHA_SIZE">461<summary>462463</summary>464</member>465<member name="F:Tao.Platform.X11.Glx.GLX_X_VISUAL_TYPE">466<summary>467468</summary>469</member>470<member name="F:Tao.Platform.X11.Glx.GLX_CONFIG_CAVEAT">471<summary>472473</summary>474</member>475<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_TYPE">476<summary>477478</summary>479</member>480<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_INDEX_VALUE">481<summary>482483</summary>484</member>485<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_RED_VALUE">486<summary>487488</summary>489</member>490<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_GREEN_VALUE">491<summary>492493</summary>494</member>495<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_BLUE_VALUE">496<summary>497498</summary>499</member>500<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_ALPHA_VALUE">501<summary>502503</summary>504</member>505<member name="F:Tao.Platform.X11.Glx.GLX_DRAWABLE_TYPE">506<summary>507508</summary>509</member>510<member name="F:Tao.Platform.X11.Glx.GLX_RENDER_TYPE">511<summary>512513</summary>514</member>515<member name="F:Tao.Platform.X11.Glx.GLX_X_RENDERABLE">516<summary>517518</summary>519</member>520<member name="F:Tao.Platform.X11.Glx.GLX_FBCONFIG_ID">521<summary>522523</summary>524</member>525<member name="F:Tao.Platform.X11.Glx.GLX_MAX_PBUFFER_WIDTH">526<summary>527528</summary>529</member>530<member name="F:Tao.Platform.X11.Glx.GLX_MAX_PBUFFER_HEIGHT">531<summary>532533</summary>534</member>535<member name="F:Tao.Platform.X11.Glx.GLX_MAX_PBUFFER_PIXELS">536<summary>537538</summary>539</member>540<member name="F:Tao.Platform.X11.Glx.GLX_VISUAL_ID">541<summary>542543</summary>544</member>545<member name="F:Tao.Platform.X11.Glx.GLX_OPTIMAL_PBUFFER_WIDTH_SGIX">546<summary>547548</summary>549</member>550<member name="F:Tao.Platform.X11.Glx.GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX">551<summary>552553</summary>554</member>555<member name="F:Tao.Platform.X11.Glx.GLX_BAD_SCREEN">556<summary>557558</summary>559</member>560<member name="F:Tao.Platform.X11.Glx.GLX_BAD_ATTRIBUTE">561<summary>562563</summary>564</member>565<member name="F:Tao.Platform.X11.Glx.GLX_NO_EXTENSION">566<summary>567568</summary>569</member>570<member name="F:Tao.Platform.X11.Glx.GLX_BAD_VISUAL">571<summary>572573</summary>574</member>575<member name="F:Tao.Platform.X11.Glx.GLX_BAD_CONTEXT">576<summary>577578</summary>579</member>580<member name="F:Tao.Platform.X11.Glx.GLX_BAD_VALUE">581<summary>582583</summary>584</member>585<member name="F:Tao.Platform.X11.Glx.GLX_BAD_ENUM">586<summary>587588</summary>589</member>590<member name="F:Tao.Platform.X11.Glx.GLX_DONT_CARE">591<summary>592593</summary>594</member>595<member name="F:Tao.Platform.X11.Glx.GLX_RGBA_BIT">596<summary>597598</summary>599</member>600<member name="F:Tao.Platform.X11.Glx.GLX_COLOR_INDEX_BIT">601<summary>602603</summary>604</member>605<member name="F:Tao.Platform.X11.Glx.GLX_WINDOW_BIT">606<summary>607608</summary>609</member>610<member name="F:Tao.Platform.X11.Glx.GLX_PIXMAP_BIT">611<summary>612613</summary>614</member>615<member name="F:Tao.Platform.X11.Glx.GLX_PBUFFER_BIT">616<summary>617618</summary>619</member>620<member name="F:Tao.Platform.X11.Glx.GLX_NONE">621<summary>622623</summary>624</member>625<member name="F:Tao.Platform.X11.Glx.GLX_SLOW_CONFIG">626<summary>627628</summary>629</member>630<member name="F:Tao.Platform.X11.Glx.GLX_NON_CONFORMANT_CONFIG">631<summary>632633</summary>634</member>635<member name="F:Tao.Platform.X11.Glx.GLX_TRUE_COLOR">636<summary>637638</summary>639</member>640<member name="F:Tao.Platform.X11.Glx.GLX_DIRECT_COLOR">641<summary>642643</summary>644</member>645<member name="F:Tao.Platform.X11.Glx.GLX_PSEUDO_COLOR">646<summary>647648</summary>649</member>650<member name="F:Tao.Platform.X11.Glx.GLX_STATIC_COLOR">651<summary>652653</summary>654</member>655<member name="F:Tao.Platform.X11.Glx.GLX_GRAY_SCALE">656<summary>657658</summary>659</member>660<member name="F:Tao.Platform.X11.Glx.GLX_STATIC_GRAY">661<summary>662663</summary>664</member>665<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_RGB">666<summary>667668</summary>669</member>670<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_INDEX">671<summary>672673</summary>674</member>675<member name="F:Tao.Platform.X11.Glx.GLX_PRESERVED_CONTENTS">676<summary>677678</summary>679</member>680<member name="F:Tao.Platform.X11.Glx.GLX_LARGEST_PBUFFER">681<summary>682683</summary>684</member>685<member name="F:Tao.Platform.X11.Glx.GLX_PBUFFER_HEIGHT">686<summary>687688</summary>689</member>690<member name="F:Tao.Platform.X11.Glx.GLX_PBUFFER_WIDTH">691<summary>692693</summary>694</member>695<member name="F:Tao.Platform.X11.Glx.GLX_WIDTH">696<summary>697698</summary>699</member>700<member name="F:Tao.Platform.X11.Glx.GLX_HEIGHT">701<summary>702703</summary>704</member>705<member name="F:Tao.Platform.X11.Glx.GLX_EVENT_MASK">706<summary>707708</summary>709</member>710<member name="F:Tao.Platform.X11.Glx.GLX_RGBA_TYPE">711<summary>712713</summary>714</member>715<member name="F:Tao.Platform.X11.Glx.GLX_COLOR_INDEX_TYPE">716<summary>717718</summary>719</member>720<member name="F:Tao.Platform.X11.Glx.GLX_SCREEN">721<summary>722723</summary>724</member>725<member name="F:Tao.Platform.X11.Glx.GLX_PBUFFER_CLOBBER_MASK">726<summary>727728</summary>729</member>730<member name="F:Tao.Platform.X11.Glx.GLX_DAMAGED">731<summary>732733</summary>734</member>735<member name="F:Tao.Platform.X11.Glx.GLX_SAVED">736<summary>737738</summary>739</member>740<member name="F:Tao.Platform.X11.Glx.GLX_WINDOW">741<summary>742743</summary>744</member>745<member name="F:Tao.Platform.X11.Glx.GLX_PBUFFER">746<summary>747748</summary>749</member>750<member name="F:Tao.Platform.X11.Glx.GLX_FRONT_LEFT_BUFFER_BIT">751<summary>752753</summary>754</member>755<member name="F:Tao.Platform.X11.Glx.GLX_FRONT_RIGHT_BUFFER_BIT">756<summary>757758</summary>759</member>760<member name="F:Tao.Platform.X11.Glx.GLX_BACK_LEFT_BUFFER_BIT">761<summary>762763</summary>764</member>765<member name="F:Tao.Platform.X11.Glx.GLX_BACK_RIGHT_BUFFER_BIT">766<summary>767768</summary>769</member>770<member name="F:Tao.Platform.X11.Glx.GLX_AUX_BUFFERS_BIT">771<summary>772773</summary>774</member>775<member name="F:Tao.Platform.X11.Glx.GLX_DEPTH_BUFFER_BIT">776<summary>777778</summary>779</member>780<member name="F:Tao.Platform.X11.Glx.GLX_STENCIL_BUFFER_BIT">781<summary>782783</summary>784</member>785<member name="F:Tao.Platform.X11.Glx.GLX_ACCUM_BUFFER_BIT">786<summary>787788</summary>789</member>790<member name="F:Tao.Platform.X11.Glx.GLX_X_VISUAL_TYPE_EXT">791<summary>792793</summary>794</member>795<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_TYPE_EXT">796<summary>797798</summary>799</member>800<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_INDEX_VALUE_EXT">801<summary>802803</summary>804</member>805<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_RED_VALUE_EXT">806<summary>807808</summary>809</member>810<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_GREEN_VALUE_EXT">811<summary>812813</summary>814</member>815<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_BLUE_VALUE_EXT">816<summary>817818</summary>819</member>820<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_ALPHA_VALUE_EXT">821<summary>822823</summary>824</member>825<member name="F:Tao.Platform.X11.Glx.GLX_TRUE_COLOR_EXT">826<summary>827828</summary>829</member>830<member name="F:Tao.Platform.X11.Glx.GLX_DIRECT_COLOR_EXT">831<summary>832833</summary>834</member>835<member name="F:Tao.Platform.X11.Glx.GLX_PSEUDO_COLOR_EXT">836<summary>837838</summary>839</member>840<member name="F:Tao.Platform.X11.Glx.GLX_STATIC_COLOR_EXT">841<summary>842843</summary>844</member>845<member name="F:Tao.Platform.X11.Glx.GLX_GRAY_SCALE_EXT">846<summary>847848</summary>849</member>850<member name="F:Tao.Platform.X11.Glx.GLX_STATIC_GRAY_EXT">851<summary>852853</summary>854</member>855<member name="F:Tao.Platform.X11.Glx.GLX_NONE_EXT">856<summary>857858</summary>859</member>860<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_RGB_EXT">861<summary>862863</summary>864</member>865<member name="F:Tao.Platform.X11.Glx.GLX_TRANSPARENT_INDEX_EXT">866<summary>867868</summary>869</member>870<member name="F:Tao.Platform.X11.Glx.GLX_VISUAL_CAVEAT_EXT">871<summary>872873</summary>874</member>875<member name="F:Tao.Platform.X11.Glx.GLX_SLOW_VISUAL_EXT">876<summary>877878</summary>879</member>880<member name="F:Tao.Platform.X11.Glx.GLX_NON_CONFORMANT_VISUAL_EXT">881<summary>882883</summary>884</member>885<member name="F:Tao.Platform.X11.Glx.GLX_SWAP_METHOD_OML">886<summary>887888</summary>889</member>890<member name="F:Tao.Platform.X11.Glx.GLX_SWAP_EXCHANGE_OML">891<summary>892893</summary>894</member>895<member name="F:Tao.Platform.X11.Glx.GLX_SWAP_COPY_OML">896<summary>897898</summary>899</member>900<member name="F:Tao.Platform.X11.Glx.GLX_SWAP_UNDEFINED_OML">901<summary>902903</summary>904</member>905<member name="F:Tao.Platform.X11.Glx.GLX_VISUAL_SELECT_GROUP_SGIX">906<summary>907908</summary>909</member>910<member name="F:Tao.Platform.X11.Glx.GLX_VENDOR">911<summary>912913</summary>914</member>915<member name="F:Tao.Platform.X11.Glx.GLX_VERSION">916<summary>917918</summary>919</member>920<member name="F:Tao.Platform.X11.Glx.GLX_EXTENSIONS">921<summary>922923</summary>924</member>925<member name="F:Tao.Platform.X11.Glx.GLX_SHARE_CONTEXT_EXT">926<summary>927928</summary>929</member>930<member name="F:Tao.Platform.X11.Glx.GLX_VISUAL_ID_EXT">931<summary>932933</summary>934</member>935<member name="F:Tao.Platform.X11.Glx.GLX_SCREEN_EXT">936<summary>937938</summary>939</member>940<member name="F:Tao.Platform.X11.Glx.GLX_SAMPLE_BUFFERS_SGIS">941<summary>942943</summary>944</member>945<member name="F:Tao.Platform.X11.Glx.GLX_SAMPLES_SGIS">946<summary>947948</summary>949</member>950<member name="F:Tao.Platform.X11.Glx.GLX_EXT_import_context">951<summary>952953</summary>954</member>955<member name="F:Tao.Platform.X11.Glx.GLX_EXT_visual_info">956<summary>957958</summary>959</member>960<member name="F:Tao.Platform.X11.Glx.GLX_EXT_visual_rating">961<summary>962963</summary>964</member>965<member name="F:Tao.Platform.X11.Glx.GLX_ARB_get_proc_address">966<summary>967968</summary>969</member>970<member name="M:Tao.Platform.X11.Glx.glXChooseVisual(System.IntPtr,System.Int32,System.IntPtr)">971<summary>972973</summary>974<param name="dpy"></param>975<param name="screen"></param>976<param name="attriblist"></param>977<returns></returns>978</member>979<member name="M:Tao.Platform.X11.Glx.glXChooseVisual(System.IntPtr,System.Int32,System.Int32)">980<summary>981982</summary>983<param name="dpy"></param>984<param name="screen"></param>985<param name="attrib"></param>986<returns></returns>987</member>988<member name="M:Tao.Platform.X11.Glx.glXChooseVisual(System.IntPtr,System.Int32,System.Int32[])">989<summary>990991</summary>992<param name="dpy"></param>993<param name="screen"></param>994<param name="attriblist"></param>995<returns></returns>996</member>997<member name="M:Tao.Platform.X11.Glx.glXCopyContext(System.IntPtr,System.IntPtr,System.IntPtr,System.UInt64)">998<summary>9991000</summary>1001<param name="dpy"></param>1002<param name="src"></param>1003<param name="dst"></param>1004<param name="mask"></param>1005</member>1006<member name="M:Tao.Platform.X11.Glx.glXCreateContext(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)">1007<summary>10081009</summary>1010<param name="dpy"></param>1011<param name="vis"></param>1012<param name="shareList"></param>1013<param name="direct"></param>1014<returns></returns>1015</member>1016<member name="M:Tao.Platform.X11.Glx.glXCreateGLXPixmap(System.IntPtr,System.IntPtr,System.IntPtr)">1017<summary>10181019</summary>1020<param name="dpy"></param>1021<param name="vis"></param>1022<param name="pixmap"></param>1023<returns></returns>1024</member>1025<member name="M:Tao.Platform.X11.Glx.glXDestroyContext(System.IntPtr,System.IntPtr)">1026<summary>10271028</summary>1029<param name="dpy"></param>1030<param name="context"></param>1031</member>1032<member name="M:Tao.Platform.X11.Glx.glXDestroyGLXPixmap(System.IntPtr,System.IntPtr)">1033<summary>10341035</summary>1036<param name="dpy"></param>1037<param name="pix"></param>1038</member>1039<member name="M:Tao.Platform.X11.Glx.glXGetConfig(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr)">1040<summary>10411042</summary>1043<param name="dpy"></param>1044<param name="vis"></param>1045<param name="attrib"></param>1046<param name="value"></param>1047<returns></returns>1048</member>1049<member name="M:Tao.Platform.X11.Glx.glXGetConfig(System.IntPtr,System.IntPtr,System.Int32,System.Int32)">1050<summary>10511052</summary>1053<param name="dpy"></param>1054<param name="vis"></param>1055<param name="attrib"></param>1056<param name="val"></param>1057<returns></returns>1058</member>1059<member name="M:Tao.Platform.X11.Glx.glXGetConfig(System.IntPtr,System.IntPtr,System.Int32,System.Int32[])">1060<summary>10611062</summary>1063<param name="dpy"></param>1064<param name="vis"></param>1065<param name="attrib"></param>1066<param name="val"></param>1067<returns></returns>1068</member>1069<member name="M:Tao.Platform.X11.Glx.glXGetCurrentContext">1070<summary>10711072</summary>1073<returns></returns>1074</member>1075<member name="M:Tao.Platform.X11.Glx.glXGetCurrentDrawable">1076<summary>10771078</summary>1079<returns></returns>1080</member>1081<member name="M:Tao.Platform.X11.Glx.glXIsDirect(System.IntPtr,System.IntPtr)">1082<summary>10831084</summary>1085<param name="dpy"></param>1086<param name="ctx"></param>1087<returns></returns>1088</member>1089<member name="M:Tao.Platform.X11.Glx.glXMakeCurrent(System.IntPtr,System.IntPtr,System.IntPtr)">1090<summary>10911092</summary>1093<param name="display"></param>1094<param name="drawable"></param>1095<param name="context"></param>1096<returns></returns>1097</member>1098<member name="M:Tao.Platform.X11.Glx.glXQueryExtension(System.IntPtr,System.IntPtr,System.IntPtr)">1099<summary>11001101</summary>1102<param name="dpy"></param>1103<param name="errorBase"></param>1104<param name="eventBase"></param>1105<returns></returns>1106</member>1107<member name="M:Tao.Platform.X11.Glx.glXQueryExtension(System.IntPtr,System.Int32*,System.Int32*)">1108<summary>11091110</summary>1111<param name="dpy"></param>1112<param name="errorBase"></param>1113<param name="eventBase"></param>1114<returns></returns>1115</member>1116<member name="M:Tao.Platform.X11.Glx.glXQueryExtension(System.IntPtr,System.Int32,System.Int32)">1117<summary>11181119</summary>1120<param name="dpy"></param>1121<param name="errorBase"></param>1122<param name="eventBase"></param>1123<returns></returns>1124</member>1125<member name="M:Tao.Platform.X11.Glx.glXQueryExtension(System.IntPtr,System.Int32[],System.Int32[])">1126<summary>11271128</summary>1129<param name="dpy"></param>1130<param name="errorBase"></param>1131<param name="eventBase"></param>1132<returns></returns>1133</member>1134<member name="M:Tao.Platform.X11.Glx.glXQueryVersion(System.IntPtr,System.IntPtr,System.IntPtr)">1135<summary>11361137</summary>1138<param name="dpy"></param>1139<param name="major"></param>1140<param name="minor"></param>1141<returns></returns>1142</member>1143<member name="M:Tao.Platform.X11.Glx.glXQueryVersion(System.IntPtr,System.Int32*,System.Int32*)">1144<summary>11451146</summary>1147<param name="dpy"></param>1148<param name="major"></param>1149<param name="minor"></param>1150<returns></returns>1151</member>1152<member name="M:Tao.Platform.X11.Glx.glXSwapBuffers(System.IntPtr,System.IntPtr)">1153<summary>11541155</summary>1156<param name="display"></param>1157<param name="drawable"></param>1158</member>1159<member name="M:Tao.Platform.X11.Glx.glXUseXFont(System.IntPtr,System.Int32,System.Int32,System.Int32)">1160<summary>11611162</summary>1163<param name="font"></param>1164<param name="first"></param>1165<param name="count"></param>1166<param name="listBase"></param>1167</member>1168<member name="M:Tao.Platform.X11.Glx.glXWaitGL">1169<summary>11701171</summary>1172</member>1173<member name="M:Tao.Platform.X11.Glx.glXWaitX">1174<summary>11751176</summary>1177</member>1178<member name="M:Tao.Platform.X11.Glx.glXGetClientString(System.IntPtr,System.Int32)">1179<summary>11801181</summary>1182<param name="dpy"></param>1183<param name="name"></param>1184<returns></returns>1185</member>1186<member name="M:Tao.Platform.X11.Glx.glXQueryServerString(System.IntPtr,System.Int32,System.Int32)">1187<summary>11881189</summary>1190<param name="dpy"></param>1191<param name="screen"></param>1192<param name="name"></param>1193<returns></returns>1194</member>1195<member name="M:Tao.Platform.X11.Glx.glXQueryExtensionsString(System.IntPtr,System.Int32)">1196<summary>11971198</summary>1199<param name="dpy"></param>1200<param name="screen"></param>1201<returns></returns>1202</member>1203<member name="M:Tao.Platform.X11.Glx.glXGetFBConfigs(System.IntPtr,System.Int32,System.Int32*)">1204<summary>12051206</summary>1207<param name="dpy"></param>1208<param name="screen"></param>1209<param name="nelements"></param>1210<returns></returns>1211</member>1212<member name="M:Tao.Platform.X11.Glx.glXGetFBConfigs(System.IntPtr,System.Int32,System.Int32)">1213<summary>12141215</summary>1216<param name="dpy"></param>1217<param name="screen"></param>1218<param name="element"></param>1219<returns></returns>1220</member>1221<member name="M:Tao.Platform.X11.Glx.glXGetFBConfigs(System.IntPtr,System.Int32,System.Int32[])">1222<summary>12231224</summary>1225<param name="dpy"></param>1226<param name="screen"></param>1227<param name="nelements"></param>1228<returns></returns>1229</member>1230<member name="M:Tao.Platform.X11.Glx.glXChooseFBConfig(System.IntPtr,System.Int32,System.Int32*,System.Int32*)">1231<summary>12321233</summary>1234<param name="dpy"></param>1235<param name="screen"></param>1236<param name="attrib_list"></param>1237<param name="nelements"></param>1238<returns></returns>1239</member>1240<member name="M:Tao.Platform.X11.Glx.glXChooseFBConfig(System.IntPtr,System.Int32,System.Int32,System.Int32)">1241<summary>12421243</summary>1244<param name="dpy"></param>1245<param name="screen"></param>1246<param name="attrib_list"></param>1247<param name="nelements"></param>1248<returns></returns>1249</member>1250<member name="M:Tao.Platform.X11.Glx.glXChooseFBConfig(System.IntPtr,System.Int32,System.Int32[],System.Int32[])">1251<summary>12521253</summary>1254<param name="dpy"></param>1255<param name="screen"></param>1256<param name="attrib_list"></param>1257<param name="nelements"></param>1258<returns></returns>1259</member>1260<member name="M:Tao.Platform.X11.Glx.glXGetFBConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32*)">1261<summary>12621263</summary>1264<param name="dpy"></param>1265<param name="config"></param>1266<param name="attribute"></param>1267<param name="value"></param>1268<returns></returns>1269</member>1270<member name="M:Tao.Platform.X11.Glx.glXGetFBConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32)">1271<summary>12721273</summary>1274<param name="dpy"></param>1275<param name="config"></param>1276<param name="attribute"></param>1277<param name="value"></param>1278<returns></returns>1279</member>1280<member name="M:Tao.Platform.X11.Glx.glXGetFBConfigAttrib(System.IntPtr,System.IntPtr,System.Int32,System.Int32[])">1281<summary>12821283</summary>1284<param name="dpy"></param>1285<param name="config"></param>1286<param name="attribute"></param>1287<param name="value"></param>1288<returns></returns>1289</member>1290<member name="M:Tao.Platform.X11.Glx.glXGetVisualFromFBConfig(System.IntPtr,System.IntPtr)">1291<summary>12921293</summary>1294<param name="dpy"></param>1295<param name="config"></param>1296<returns></returns>1297</member>1298<member name="M:Tao.Platform.X11.Glx.glXCreateWindow(System.IntPtr,System.IntPtr,System.Int32,System.Int32*)">1299<summary>13001301</summary>1302<param name="dpy"></param>1303<param name="config"></param>1304<param name="win"></param>1305<param name="attrib_list"></param>1306<returns></returns>1307</member>1308<member name="M:Tao.Platform.X11.Glx.glXCreateWindow(System.IntPtr,System.IntPtr,System.Int32,System.Int32[])">1309<summary>13101311</summary>1312<param name="dpy"></param>1313<param name="config"></param>1314<param name="win"></param>1315<param name="attrib_list"></param>1316<returns></returns>1317</member>1318<member name="M:Tao.Platform.X11.Glx.glXDestroyWindow(System.IntPtr,System.Int32)">1319<summary>13201321</summary>1322<param name="dpy"></param>1323<param name="win"></param>1324</member>1325<member name="M:Tao.Platform.X11.Glx.glXCreatePixmap(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32*)">1326<summary>13271328</summary>1329<param name="dpy"></param>1330<param name="config"></param>1331<param name="pixmap"></param>1332<param name="attrib_list"></param>1333<returns></returns>1334</member>1335<member name="M:Tao.Platform.X11.Glx.glXCreatePixmap(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32[])">1336<summary>13371338</summary>1339<param name="dpy"></param>1340<param name="config"></param>1341<param name="pixmap"></param>1342<param name="attrib_list"></param>1343<returns></returns>1344</member>1345<member name="M:Tao.Platform.X11.Glx.glXDestroyPixmap(System.IntPtr,System.Int32)">1346<summary>13471348</summary>1349<param name="dpy"></param>1350<param name="pixmap"></param>1351</member>1352<member name="M:Tao.Platform.X11.Glx.glXCreatePbuffer(System.IntPtr,System.IntPtr,System.Int32*)">1353<summary>13541355</summary>1356<param name="dpy"></param>1357<param name="config"></param>1358<param name="attrib_list"></param>1359<returns></returns>1360</member>1361<member name="M:Tao.Platform.X11.Glx.glXCreatePbuffer(System.IntPtr,System.IntPtr,System.Int32[])">1362<summary>13631364</summary>1365<param name="dpy"></param>1366<param name="config"></param>1367<param name="attrib_list"></param>1368<returns></returns>1369</member>1370<member name="M:Tao.Platform.X11.Glx.glXDestroyPbuffer(System.IntPtr,System.IntPtr)">1371<summary>13721373</summary>1374<param name="dpy"></param>1375<param name="pbuf"></param>1376</member>1377<member name="M:Tao.Platform.X11.Glx.glXQueryDrawable(System.IntPtr,System.IntPtr,System.Int32,System.UInt32*)">1378<summary>13791380</summary>1381<param name="dpy"></param>1382<param name="draw"></param>1383<param name="attribute"></param>1384<param name="value"></param>1385</member>1386<member name="M:Tao.Platform.X11.Glx.glXQueryDrawable(System.IntPtr,System.IntPtr,System.Int32,System.UInt32[])">1387<summary>13881389</summary>1390<param name="dpy"></param>1391<param name="draw"></param>1392<param name="attribute"></param>1393<param name="value"></param>1394</member>1395<member name="M:Tao.Platform.X11.Glx.glXCreateNewContext(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.Boolean)">1396<summary>13971398</summary>1399<param name="dpy"></param>1400<param name="config"></param>1401<param name="render_type"></param>1402<param name="share_list"></param>1403<param name="direct"></param>1404<returns></returns>1405</member>1406<member name="M:Tao.Platform.X11.Glx.glXMakeContextCurrent(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)">1407<summary>14081409</summary>1410<param name="display"></param>1411<param name="draw"></param>1412<param name="read"></param>1413<param name="ctx"></param>1414<returns></returns>1415</member>1416<member name="M:Tao.Platform.X11.Glx.glXGetCurrentReadDrawable">1417<summary>14181419</summary>1420<returns></returns>1421</member>1422<member name="M:Tao.Platform.X11.Glx.glXGetCurrentDisplay">1423<summary>14241425</summary>1426<returns></returns>1427</member>1428<member name="M:Tao.Platform.X11.Glx.glXQueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32*)">1429<summary>14301431</summary>1432<param name="dpy"></param>1433<param name="ctx"></param>1434<param name="attribute"></param>1435<param name="value"></param>1436<returns></returns>1437</member>1438<member name="M:Tao.Platform.X11.Glx.glXQueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32)">1439<summary>14401441</summary>1442<param name="dpy"></param>1443<param name="ctx"></param>1444<param name="attribute"></param>1445<param name="value"></param>1446<returns></returns>1447</member>1448<member name="M:Tao.Platform.X11.Glx.glXQueryContext(System.IntPtr,System.IntPtr,System.Int32,System.Int32[])">1449<summary>14501451</summary>1452<param name="dpy"></param>1453<param name="ctx"></param>1454<param name="attribute"></param>1455<param name="value"></param>1456<returns></returns>1457</member>1458<member name="M:Tao.Platform.X11.Glx.glXSelectEvent(System.IntPtr,System.IntPtr,System.UInt64)">1459<summary>14601461</summary>1462<param name="dpy"></param>1463<param name="draw"></param>1464<param name="event_mask"></param>1465</member>1466<member name="M:Tao.Platform.X11.Glx.glXGetSelectedEvent(System.IntPtr,System.IntPtr,System.UInt64*)">1467<summary>14681469</summary>1470<param name="dpy"></param>1471<param name="draw"></param>1472<param name="event_mask"></param>1473</member>1474<member name="M:Tao.Platform.X11.Glx.glXGetSelectedEvent(System.IntPtr,System.IntPtr,System.UInt64)">1475<summary>14761477</summary>1478<param name="dpy"></param>1479<param name="draw"></param>1480<param name="event_mask"></param>1481</member>1482<member name="M:Tao.Platform.X11.Glx.glxGetProcAddress(System.String)">1483<summary>14841485</summary>1486<param name="procName"></param>1487<returns></returns>1488</member>1489<member name="M:Tao.Platform.X11.Glx.glXGetContextIDEXT(System.IntPtr)">1490<summary>14911492</summary>1493<param name="ctx"></param>1494<returns></returns>1495</member>1496<member name="M:Tao.Platform.X11.Glx.glXImportContextEXT(System.IntPtr,System.Int32)">1497<summary>14981499</summary>1500<param name="dpy"></param>1501<param name="contextID"></param>1502<returns></returns>1503</member>1504<member name="M:Tao.Platform.X11.Glx.glXFreeContextEXT(System.IntPtr,System.IntPtr)">1505<summary>15061507</summary>1508<param name="dpy"></param>1509<param name="ctx"></param>1510</member>1511<member name="M:Tao.Platform.X11.Glx.glXQueryContextInfoEXT(System.IntPtr,System.IntPtr,System.Int32,System.Int32*)">1512<summary>15131514</summary>1515<param name="dpy"></param>1516<param name="ctx"></param>1517<param name="attribute"></param>1518<param name="value"></param>1519<returns></returns>1520</member>1521<member name="M:Tao.Platform.X11.Glx.glXQueryContextInfoEXT(System.IntPtr,System.IntPtr,System.Int32,System.Int32)">1522<summary>15231524</summary>1525<param name="dpy"></param>1526<param name="ctx"></param>1527<param name="attribute"></param>1528<param name="value"></param>1529<returns></returns>1530</member>1531<member name="M:Tao.Platform.X11.Glx.glXGetCurrentDisplayEXT">1532<summary>15331534</summary>1535<returns></returns>1536</member>1537<member name="M:Tao.Platform.X11.Glx.glXGetProcAddressARB(System.String)">1538<summary>15391540</summary>1541<param name="procName"></param>1542<returns></returns>1543</member>1544</members>1545</doc>154615471548