-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cloo.xml
4270 lines (4210 loc) · 261 KB
/
Cloo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Cloo</name>
</assembly>
<members>
<member name="T:Cloo.ComputeUserEvent">
<summary>
Represents an user created event.
</summary>
<remarks> Requires OpenCL 1.1. </remarks>
</member>
<member name="T:Cloo.ComputeEventBase">
<summary>
Represents the parent type to any Cloo event types.
</summary>
<seealso cref="T:Cloo.ComputeEvent"/>
<seealso cref="T:Cloo.ComputeUserEvent"/>
</member>
<member name="T:Cloo.ComputeResource">
<summary>
Represents an OpenCL resource.
</summary>
<remarks> An OpenCL resource is an OpenCL object that can be created and deleted by the application. </remarks>
<seealso cref="T:Cloo.ComputeObject"/>
</member>
<member name="T:Cloo.ComputeObject">
<summary>
Represents an OpenCL object.
</summary>
<remarks> For the purpose of Cloo an OpenCL object is an object that is identified by its handle in the OpenCL environment. </remarks>
</member>
<member name="M:Cloo.ComputeObject.Equals(System.Object,System.Object)">
<summary>
Checks if two <c>object</c>s are equal. These <c>object</c>s must be cast from <see cref="T:Cloo.ComputeObject"/>s.
</summary>
<param name="objA"> The first <c>object</c> to compare. </param>
<param name="objB"> The second <c>object</c> to compare. </param>
<returns> <c>true</c> if the <c>object</c>s are equal otherwise <c>false</c>. </returns>
</member>
<member name="M:Cloo.ComputeObject.Equals(System.Object)">
<summary>
Checks if the <see cref="T:Cloo.ComputeObject"/> is equal to a specified <see cref="T:Cloo.ComputeObject"/> cast to an <c>object</c>.
</summary>
<param name="obj"> The specified <c>object</c> to compare the <see cref="T:Cloo.ComputeObject"/> with. </param>
<returns> <c>true</c> if the <see cref="T:Cloo.ComputeObject"/> is equal with <paramref name="obj"/> otherwise <c>false</c>. </returns>
</member>
<member name="M:Cloo.ComputeObject.Equals(Cloo.ComputeObject)">
<summary>
Checks if the <see cref="T:Cloo.ComputeObject"/> is equal to a specified <see cref="T:Cloo.ComputeObject"/>.
</summary>
<param name="obj"> The specified <see cref="T:Cloo.ComputeObject"/> to compare the <see cref="T:Cloo.ComputeObject"/> with. </param>
<returns> <c>true</c> if the <see cref="T:Cloo.ComputeObject"/> is equal with <paramref name="obj"/> otherwise <c>false</c>. </returns>
</member>
<member name="M:Cloo.ComputeObject.GetHashCode">
<summary>
Gets the hash code of the <see cref="T:Cloo.ComputeObject"/>.
</summary>
<returns> The hash code of the <see cref="T:Cloo.ComputeObject"/>. </returns>
</member>
<member name="M:Cloo.ComputeObject.ToString">
<summary>
Gets the string representation of the <see cref="T:Cloo.ComputeObject"/>.
</summary>
<returns> The string representation of the <see cref="T:Cloo.ComputeObject"/>. </returns>
</member>
<member name="T:Cloo.ComputeObject.GetInfoDelegate`2">
<summary>
</summary>
<typeparam name="InfoType"></typeparam>
<param name="objectHandle"></param>
<param name="paramName"></param>
<param name="paramValueSize"></param>
<param name="paramValue"></param>
<param name="paramValueSizeRet"></param>
<returns></returns>
</member>
<member name="T:Cloo.ComputeObject.GetInfoDelegateEx`3">
<summary>
</summary>
<typeparam name="InfoType"></typeparam>
<param name="mainObjectHandle"></param>
<param name="secondaryObjectHandle"></param>
<param name="paramName"></param>
<param name="paramValueSize"></param>
<param name="paramValue"></param>
<param name="paramValueSizeRet"></param>
<returns></returns>
</member>
<member name="M:Cloo.ComputeResource.Dispose">
<summary>
Deletes the <see cref="T:Cloo.ComputeResource"/> and frees its accompanying OpenCL resources.
</summary>
</member>
<member name="M:Cloo.ComputeResource.Dispose(System.Boolean)">
<summary>
Releases the associated OpenCL object.
</summary>
<param name="manual"> Specifies the operation mode of this method. </param>
<remarks> <paramref name="manual"/> must be <c>true</c> if this method is invoked directly by the application. </remarks>
</member>
<member name="M:Cloo.ComputeResource.Finalize">
<summary>
Releases the associated OpenCL object.
</summary>
</member>
<member name="M:Cloo.ComputeEventBase.ToString">
<summary>
Gets the string representation of the <see cref="T:Cloo.ComputeEventBase"/>.
</summary>
<returns> The string representation of the <see cref="T:Cloo.ComputeEventBase"/>. </returns>
</member>
<member name="M:Cloo.ComputeEventBase.Dispose(System.Boolean)">
<summary>
Releases the associated OpenCL object.
</summary>
<param name="manual"> Specifies the operation mode of this method. </param>
<remarks> <paramref name="manual"/> must be <c>true</c> if this method is invoked directly by the application. </remarks>
</member>
<member name="M:Cloo.ComputeEventBase.HookNotifier">
<summary>
</summary>
</member>
<member name="M:Cloo.ComputeEventBase.OnCompleted(System.Object,Cloo.ComputeCommandStatusArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="evArgs"></param>
</member>
<member name="M:Cloo.ComputeEventBase.OnAborted(System.Object,Cloo.ComputeCommandStatusArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="evArgs"></param>
</member>
<member name="E:Cloo.ComputeEventBase.Aborted">
<summary>
Occurs when the command associated with the event is abnormally terminated.
</summary>
<remarks> Requires OpenCL 1.1. </remarks>
</member>
<member name="E:Cloo.ComputeEventBase.Completed">
<summary>
Occurs when <c>ComputeEventBase.Status</c> changes to <c>ComputeCommandExecutionStatus.Complete</c>.
</summary>
<remarks> Requires OpenCL 1.1. </remarks>
</member>
<member name="P:Cloo.ComputeEventBase.Context">
<summary>
Gets the <see cref="T:Cloo.ComputeContext"/> associated with the <see cref="T:Cloo.ComputeEventBase"/>.
</summary>
<value> The <see cref="T:Cloo.ComputeContext"/> associated with the <see cref="T:Cloo.ComputeEventBase"/>. </value>
</member>
<member name="P:Cloo.ComputeEventBase.FinishTime">
<summary>
Gets the <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command has finished execution.
</summary>
<value> The <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command has finished execution. </value>
</member>
<member name="P:Cloo.ComputeEventBase.EnqueueTime">
<summary>
Gets the <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command is enqueued in the <see cref="T:Cloo.ComputeCommandQueue"/> by the host.
</summary>
<value> The <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command is enqueued in the <see cref="T:Cloo.ComputeCommandQueue"/> by the host. </value>
</member>
<member name="P:Cloo.ComputeEventBase.Status">
<summary>
Gets the execution status of the associated command.
</summary>
<value> The execution status of the associated command or a negative value if the execution was abnormally terminated. </value>
</member>
<member name="P:Cloo.ComputeEventBase.StartTime">
<summary>
Gets the <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command starts execution.
</summary>
<value> The <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command starts execution. </value>
</member>
<member name="P:Cloo.ComputeEventBase.SubmitTime">
<summary>
Gets the <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command that has been enqueued is submitted by the host to the device.
</summary>
<value> The <see cref="T:Cloo.ComputeDevice"/> time counter in nanoseconds when the associated command that has been enqueued is submitted by the host to the device. </value>
</member>
<member name="P:Cloo.ComputeEventBase.Type">
<summary>
Gets the <see cref="T:Cloo.ComputeCommandType"/> associated with the event.
</summary>
<value> The <see cref="T:Cloo.ComputeCommandType"/> associated with the event. </value>
</member>
<member name="M:Cloo.ComputeUserEvent.#ctor(Cloo.ComputeContext)">
<summary>
Creates a new <see cref="T:Cloo.ComputeUserEvent"/>.
</summary>
<param name="context"> The <see cref="T:Cloo.ComputeContext"/> in which the <see cref="T:Cloo.ComputeUserEvent"/> is created. </param>
<remarks> Requires OpenCL 1.1. </remarks>
</member>
<member name="M:Cloo.ComputeUserEvent.SetStatus(Cloo.ComputeCommandExecutionStatus)">
<summary>
Sets the new status of the <see cref="T:Cloo.ComputeUserEvent"/>.
</summary>
<param name="status"> The new status of the <see cref="T:Cloo.ComputeUserEvent"/>. Allowed value is <see cref="F:Cloo.ComputeCommandExecutionStatus.Complete"/>. </param>
</member>
<member name="M:Cloo.ComputeUserEvent.SetStatus(System.Int32)">
<summary>
Sets the new status of the <see cref="T:Cloo.ComputeUserEvent"/> to an error value.
</summary>
<param name="status"> The error status of the <see cref="T:Cloo.ComputeUserEvent"/>. This should be a negative value. </param>
</member>
<member name="T:Cloo.ComputeEvent">
<summary>
Represents an OpenCL event.
</summary>
<remarks> An event encapsulates the status of an operation such as a command. It can be used to synchronize operations in a context. </remarks>
<seealso cref="T:Cloo.ComputeUserEvent"/>
<seealso cref="T:Cloo.ComputeCommandQueue"/>
<seealso cref="T:Cloo.ComputeContext"/>
</member>
<member name="M:Cloo.ComputeEvent.Dispose(System.Boolean)">
<summary>
Releases the associated OpenCL object.
</summary>
<param name="manual"> Specifies the operation mode of this method. </param>
<remarks> <paramref name="manual"/> must be <c>true</c> if this method is invoked directly by the application. </remarks>
</member>
<member name="P:Cloo.ComputeEvent.CommandQueue">
<summary>
Gets the <see cref="T:Cloo.ComputeCommandQueue"/> associated with the <see cref="T:Cloo.ComputeEvent"/>.
</summary>
<value> The <see cref="T:Cloo.ComputeCommandQueue"/> associated with the <see cref="T:Cloo.ComputeEvent"/>. </value>
</member>
<member name="T:Cloo.ComputeImage2D">
<summary>
Represents an OpenCL 2D image.
</summary>
<seealso cref="T:Cloo.ComputeImage"/>
</member>
<member name="T:Cloo.ComputeImage">
<summary>
Represents an OpenCL image.
</summary>
<remarks> A memory object that stores a two- or three- dimensional structured array. Image data can only be accessed with read and write functions. The read functions use a sampler. </remarks>
<seealso cref="T:Cloo.ComputeMemory"/>
<seealso cref="T:Cloo.ComputeSampler"/>
</member>
<member name="T:Cloo.ComputeMemory">
<summary>
Represents an OpenCL memory object.
</summary>
<remarks> A memory object is a handle to a region of global memory. </remarks>
<seealso cref="T:Cloo.ComputeBuffer`1"/>
<seealso cref="T:Cloo.ComputeImage"/>
</member>
<member name="M:Cloo.ComputeMemory.#ctor(Cloo.ComputeContext,Cloo.ComputeMemoryFlags)">
<summary>
</summary>
<param name="context"></param>
<param name="flags"></param>
</member>
<member name="M:Cloo.ComputeMemory.Dispose(System.Boolean)">
<summary>
Releases the associated OpenCL object.
</summary>
<param name="manual"> Specifies the operation mode of this method. </param>
<remarks> <paramref name="manual"/> must be <c>true</c> if this method is invoked directly by the application. </remarks>
</member>
<member name="P:Cloo.ComputeMemory.Context">
<summary>
Gets the <see cref="T:Cloo.ComputeContext"/> of the <see cref="T:Cloo.ComputeMemory"/>.
</summary>
<value> The <see cref="T:Cloo.ComputeContext"/> of the <see cref="T:Cloo.ComputeMemory"/>. </value>
</member>
<member name="P:Cloo.ComputeMemory.Flags">
<summary>
Gets the <see cref="T:Cloo.ComputeMemoryFlags"/> of the <see cref="T:Cloo.ComputeMemory"/>.
</summary>
<value> The <see cref="T:Cloo.ComputeMemoryFlags"/> of the <see cref="T:Cloo.ComputeMemory"/>. </value>
</member>
<member name="P:Cloo.ComputeMemory.Size">
<summary>
Gets or sets (protected) the size in bytes of the <see cref="T:Cloo.ComputeMemory"/>.
</summary>
<value> The size in bytes of the <see cref="T:Cloo.ComputeMemory"/>. </value>
</member>
<member name="M:Cloo.ComputeImage.#ctor(Cloo.ComputeContext,Cloo.ComputeMemoryFlags)">
<summary>
</summary>
<param name="context"></param>
<param name="flags"></param>
</member>
<member name="M:Cloo.ComputeImage.ToString">
<summary>
Gets the string representation of the <see cref="T:Cloo.ComputeImage"/>.
</summary>
<returns> The string representation of the <see cref="T:Cloo.ComputeImage"/>. </returns>
</member>
<member name="M:Cloo.ComputeImage.GetSupportedFormats(Cloo.ComputeContext,Cloo.ComputeMemoryFlags,Cloo.ComputeMemoryType)">
<summary>
</summary>
<param name="context"></param>
<param name="flags"></param>
<param name="type"></param>
<returns></returns>
</member>
<member name="M:Cloo.ComputeImage.Init">
<summary>
</summary>
</member>
<member name="P:Cloo.ComputeImage.Depth">
<summary>
Gets or sets (protected) the depth in pixels of the <see cref="T:Cloo.ComputeImage"/>.
</summary>
<value> The depth in pixels of the <see cref="T:Cloo.ComputeImage"/>. </value>
</member>
<member name="P:Cloo.ComputeImage.ElementSize">
<summary>
Gets or sets (protected) the size of the elements (pixels) of the <see cref="T:Cloo.ComputeImage"/>.
</summary>
<value> The size of the elements (pixels) of the <see cref="T:Cloo.ComputeImage"/>. </value>
</member>
<member name="P:Cloo.ComputeImage.Height">
<summary>
Gets or sets (protected) the height in pixels of the <see cref="T:Cloo.ComputeImage"/>.
</summary>
<value> The height in pixels of the <see cref="T:Cloo.ComputeImage"/>. </value>
</member>
<member name="P:Cloo.ComputeImage.RowPitch">
<summary>
Gets or sets (protected) the size in bytes of a row of elements of the <see cref="T:Cloo.ComputeImage"/>.
</summary>
<value> The size in bytes of a row of elements of the <see cref="T:Cloo.ComputeImage"/>. </value>
</member>
<member name="P:Cloo.ComputeImage.SlicePitch">
<summary>
Gets or sets (protected) the size in bytes of a 2D slice of a <see cref="T:Cloo.ComputeImage3D"/>.
</summary>
<value> The size in bytes of a 2D slice of a <see cref="T:Cloo.ComputeImage3D"/>. For a <see cref="T:Cloo.ComputeImage2D"/> this value is 0. </value>
</member>
<member name="P:Cloo.ComputeImage.Width">
<summary>
Gets or sets (protected) the width in pixels of the <see cref="T:Cloo.ComputeImage"/>.
</summary>
<value> The width in pixels of the <see cref="T:Cloo.ComputeImage"/>. </value>
</member>
<member name="M:Cloo.ComputeImage2D.#ctor(Cloo.ComputeContext,Cloo.ComputeMemoryFlags,Cloo.ComputeImageFormat,System.Int32,System.Int32,System.Int64,System.IntPtr)">
<summary>
Creates a new <see cref="T:Cloo.ComputeImage2D"/>.
</summary>
<param name="context"> A valid <see cref="T:Cloo.ComputeContext"/> in which the <see cref="T:Cloo.ComputeImage2D"/> is created. </param>
<param name="flags"> A bit-field that is used to specify allocation and usage information about the <see cref="T:Cloo.ComputeImage2D"/>. </param>
<param name="format"> A structure that describes the format properties of the <see cref="T:Cloo.ComputeImage2D"/>. </param>
<param name="width"> The width of the <see cref="T:Cloo.ComputeImage2D"/> in pixels. </param>
<param name="height"> The height of the <see cref="T:Cloo.ComputeImage2D"/> in pixels. </param>
<param name="rowPitch"> The size in bytes of each row of elements of the <see cref="T:Cloo.ComputeImage2D"/>. If <paramref name="rowPitch"/> is zero, OpenCL will compute the proper value based on <see cref="P:Cloo.ComputeImage.Width"/> and <see cref="P:Cloo.ComputeImage.ElementSize"/>. </param>
<param name="data"> The data to initialize the <see cref="T:Cloo.ComputeImage2D"/>. Can be <c>IntPtr.Zero</c>. </param>
</member>
<member name="M:Cloo.ComputeImage2D.CreateFromGLRenderbuffer(Cloo.ComputeContext,Cloo.ComputeMemoryFlags,System.Int32)">
<summary>
Creates a new <see cref="T:Cloo.ComputeImage2D"/> from an OpenGL renderbuffer object.
</summary>
<param name="context"> A <see cref="T:Cloo.ComputeContext"/> with enabled CL/GL sharing. </param>
<param name="flags"> A bit-field that is used to specify usage information about the <see cref="T:Cloo.ComputeImage2D"/>. Only <c>ComputeMemoryFlags.ReadOnly</c>, <c>ComputeMemoryFlags.WriteOnly</c> and <c>ComputeMemoryFlags.ReadWrite</c> are allowed. </param>
<param name="renderbufferId"> The OpenGL renderbuffer object id to use. </param>
<returns> The created <see cref="T:Cloo.ComputeImage2D"/>. </returns>
</member>
<member name="M:Cloo.ComputeImage2D.CreateFromGLTexture2D(Cloo.ComputeContext,Cloo.ComputeMemoryFlags,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new <see cref="T:Cloo.ComputeImage2D"/> from an OpenGL 2D texture object.
</summary>
<param name="context"> A <see cref="T:Cloo.ComputeContext"/> with enabled CL/GL sharing. </param>
<param name="flags"> A bit-field that is used to specify usage information about the <see cref="T:Cloo.ComputeImage2D"/>. Only <c>ComputeMemoryFlags.ReadOnly</c>, <c>ComputeMemoryFlags.WriteOnly</c> and <c>ComputeMemoryFlags.ReadWrite</c> are allowed. </param>
<param name="textureTarget"> One of the following values: GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_RECTANGLE. Using GL_TEXTURE_RECTANGLE for texture_target requires OpenGL 3.1. Alternatively, GL_TEXTURE_RECTANGLE_ARB may be specified if the OpenGL extension GL_ARB_texture_rectangle is supported. </param>
<param name="mipLevel"> The mipmap level of the OpenGL 2D texture object to be used. </param>
<param name="textureId"> The OpenGL 2D texture object id to use. </param>
<returns> The created <see cref="T:Cloo.ComputeImage2D"/>. </returns>
</member>
<member name="M:Cloo.ComputeImage2D.GetSupportedFormats(Cloo.ComputeContext,Cloo.ComputeMemoryFlags)">
<summary>
Gets a collection of supported <see cref="T:Cloo.ComputeImage2D"/> <see cref="T:Cloo.ComputeImageFormat"/>s in a <see cref="T:Cloo.ComputeContext"/>.
</summary>
<param name="context"> The <see cref="T:Cloo.ComputeContext"/> for which the collection of <see cref="T:Cloo.ComputeImageFormat"/>s is queried. </param>
<param name="flags"> The <c>ComputeMemoryFlags</c> for which the collection of <see cref="T:Cloo.ComputeImageFormat"/>s is queried. </param>
<returns> The collection of the required <see cref="T:Cloo.ComputeImageFormat"/>s. </returns>
</member>
<member name="T:Cloo.ComputeImage3D">
<summary>
Represents an OpenCL 3D image.
</summary>
<seealso cref="T:Cloo.ComputeImage"/>
</member>
<member name="M:Cloo.ComputeImage3D.#ctor(Cloo.ComputeContext,Cloo.ComputeMemoryFlags,Cloo.ComputeImageFormat,System.Int32,System.Int32,System.Int32,System.Int64,System.Int64,System.IntPtr)">
<summary>
Creates a new <see cref="T:Cloo.ComputeImage3D"/>.
</summary>
<param name="context"> A valid <see cref="T:Cloo.ComputeContext"/> in which the <see cref="T:Cloo.ComputeImage3D"/> is created. </param>
<param name="flags"> A bit-field that is used to specify allocation and usage information about the <see cref="T:Cloo.ComputeImage3D"/>. </param>
<param name="format"> A structure that describes the format properties of the <see cref="T:Cloo.ComputeImage3D"/>. </param>
<param name="width"> The width of the <see cref="T:Cloo.ComputeImage3D"/> in pixels. </param>
<param name="height"> The height of the <see cref="T:Cloo.ComputeImage3D"/> in pixels. </param>
<param name="depth"> The depth of the <see cref="T:Cloo.ComputeImage3D"/> in pixels. </param>
<param name="rowPitch"> The size in bytes of each row of elements of the <see cref="T:Cloo.ComputeImage3D"/>. If <paramref name="rowPitch"/> is zero, OpenCL will compute the proper value based on <see cref="P:Cloo.ComputeImage.Width"/> and <see cref="P:Cloo.ComputeImage.ElementSize"/>. </param>
<param name="slicePitch"> The size in bytes of each 2D slice in the <see cref="T:Cloo.ComputeImage3D"/>. If <paramref name="slicePitch"/> is zero, OpenCL will compute the proper value based on <see cref="P:Cloo.ComputeImage.RowPitch"/> and <see cref="P:Cloo.ComputeImage.Height"/>. </param>
<param name="data"> The data to initialize the <see cref="T:Cloo.ComputeImage3D"/>. Can be <c>IntPtr.Zero</c>. </param>
</member>
<member name="M:Cloo.ComputeImage3D.CreateFromGLTexture3D(Cloo.ComputeContext,Cloo.ComputeMemoryFlags,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new <see cref="T:Cloo.ComputeImage3D"/> from an OpenGL 3D texture object.
</summary>
<param name="context"> A <see cref="T:Cloo.ComputeContext"/> with enabled CL/GL sharing. </param>
<param name="flags"> A bit-field that is used to specify usage information about the <see cref="T:Cloo.ComputeImage3D"/>. Only <c>ComputeMemoryFlags.ReadOnly</c>, <c>ComputeMemoryFlags.WriteOnly</c> and <c>ComputeMemoryFlags.ReadWrite</c> are allowed. </param>
<param name="textureTarget"> The image type of texture. Must be GL_TEXTURE_3D. </param>
<param name="mipLevel"> The mipmap level of the OpenGL 2D texture object to be used. </param>
<param name="textureId"> The OpenGL 2D texture object id to use. </param>
<returns> The created <see cref="T:Cloo.ComputeImage2D"/>. </returns>
</member>
<member name="M:Cloo.ComputeImage3D.GetSupportedFormats(Cloo.ComputeContext,Cloo.ComputeMemoryFlags)">
<summary>
Gets a collection of supported <see cref="T:Cloo.ComputeImage3D"/> <see cref="T:Cloo.ComputeImageFormat"/>s in a <see cref="T:Cloo.ComputeContext"/>.
</summary>
<param name="context"> The <see cref="T:Cloo.ComputeContext"/> for which the collection of <see cref="T:Cloo.ComputeImageFormat"/>s is queried. </param>
<param name="flags"> The <c>ComputeMemoryFlags</c> for which the collection of <see cref="T:Cloo.ComputeImageFormat"/>s is queried. </param>
<returns> The collection of the required <see cref="T:Cloo.ComputeImageFormat"/>s. </returns>
</member>
<member name="T:Cloo.ComputeCompiler">
<summary>
Represents the OpenCL compiler.
</summary>
</member>
<member name="M:Cloo.ComputeCompiler.Unload">
<summary>
Unloads the OpenCL compiler.
</summary>
</member>
<member name="T:Cloo.ComputeCommandQueue">
<summary>
Represents an OpenCL command queue.
</summary>
<remarks> A command queue is an object that holds commands that will be executed on a specific device. The command queue is created on a specific device in a context. Commands to a command queue are queued in-order but may be executed in-order or out-of-order. </remarks>
<seealso cref="T:Cloo.ComputeContext"/>
<seealso cref="T:Cloo.ComputeDevice"/>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBuffer``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source buffer to a destination buffer.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBuffer``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source buffer to a destination buffer.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBuffer``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source buffer to a destination buffer.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBuffer``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source buffer to a destination buffer.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBuffer``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source buffer to a destination buffer.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="sourceRowPitch"> The size of a row of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationRowPitch"> The size of a row of elements of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBuffer``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Int64,System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source buffer to a destination buffer.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="sourceRowPitch"> The size of a row of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationRowPitch"> The size of a row of elements of <paramref name="destination"/> in bytes. </param>
<param name="sourceSlicePitch"> The size of a 2D slice of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationSlicePitch"> The size of a 2D slice of elements of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBufferToImage``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeImage,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a buffer to an image.
</summary>
<typeparam name="T"> The type of data in <paramref name="source"/>. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBufferToImage``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeImage2D,System.Int64,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a buffer to an image.
</summary>
<typeparam name="T"> The type of data in <paramref name="source"/>. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyBufferToImage``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeImage3D,System.Int64,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a buffer to an image.
</summary>
<typeparam name="T"> The type of data in <paramref name="source"/>. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImage(Cloo.ComputeImage,Cloo.ComputeImage,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source image to a destination image.
</summary>
<param name="source"> The image to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImage(Cloo.ComputeImage2D,Cloo.ComputeImage2D,Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source image to a destination image.
</summary>
<param name="source"> The image to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImage(Cloo.ComputeImage2D,Cloo.ComputeImage3D,Cloo.SysIntX2,Cloo.SysIntX3,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source image to a destination image.
</summary>
<param name="source"> The image to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImage(Cloo.ComputeImage3D,Cloo.ComputeImage2D,Cloo.SysIntX3,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source image to a destination image.
</summary>
<param name="source"> The image to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImage(Cloo.ComputeImage3D,Cloo.ComputeImage3D,Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a source image to a destination image.
</summary>
<param name="source"> The image to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImageToBuffer``1(Cloo.ComputeImage,Cloo.ComputeBufferBase{``0},System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from an image to a buffer.
</summary>
<typeparam name="T"> The type of data in <paramref name="destination"/>. </typeparam>
<param name="source"> The image to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImageToBuffer``1(Cloo.ComputeImage2D,Cloo.ComputeBufferBase{``0},Cloo.SysIntX2,System.Int64,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from an image to a buffer.
</summary>
<typeparam name="T"> The type of data in <paramref name="destination"/>. </typeparam>
<param name="source"> The image to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.CopyImageToBuffer``1(Cloo.ComputeImage3D,Cloo.ComputeBufferBase{``0},Cloo.SysIntX3,System.Int64,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from a 3D image to a buffer.
</summary>
<typeparam name="T"> The type of data in <paramref name="destination"/>. </typeparam>
<param name="source"> The image to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromBuffer``1(Cloo.ComputeBufferBase{``0},``0[]@,System.Boolean,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The buffer to read from. </param>
<param name="destination"> The array to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromBuffer``1(Cloo.ComputeBufferBase{``0},``0[]@,System.Boolean,System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The buffer to read from. </param>
<param name="destination"> The array to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromBuffer``1(Cloo.ComputeBufferBase{``0},``0[0:,0:]@,System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The buffer to read from. </param>
<param name="destination"> The array to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromBuffer``1(Cloo.ComputeBufferBase{``0},``0[0:,0:,0:]@,System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The buffer to read from. </param>
<param name="destination"> The array to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromBuffer``1(Cloo.ComputeBufferBase{``0},``0[0:,0:]@,System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The buffer to read from. </param>
<param name="destination"> The array to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="sourceRowPitch"> The size of a row of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationRowPitch"> The size of a row of elements of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromBuffer``1(Cloo.ComputeBufferBase{``0},``0[0:,0:,0:]@,System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Int64,System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The buffer to read from. </param>
<param name="destination"> The array to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="sourceRowPitch"> The size of a row of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationRowPitch"> The size of a row of elements of <paramref name="destination"/> in bytes. </param>
<param name="sourceSlicePitch"> The size of a 2D slice of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationSlicePitch"> The size of a 2D slice of elements of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromImage(Cloo.ComputeImage,System.IntPtr,System.Boolean,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from an image.
</summary>
<param name="source"> The image to read from. </param>
<param name="destination"> A valid pointer to a preallocated memory area to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromImage(Cloo.ComputeImage2D,System.IntPtr,System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from an image.
</summary>
<param name="source"> The image to read from. </param>
<param name="destination"> A valid pointer to a preallocated memory area to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromImage(Cloo.ComputeImage3D,System.IntPtr,System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from an image.
</summary>
<param name="source"> The image to read from. </param>
<param name="destination"> A valid pointer to a preallocated memory area to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromImage(Cloo.ComputeImage2D,System.IntPtr,System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from an image.
</summary>
<param name="source"> The image to read from. </param>
<param name="destination"> A valid pointer to a preallocated memory area to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="sourceRowPitch"> The size of a row of pixels of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.ReadFromImage(Cloo.ComputeImage3D,System.IntPtr,System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to read data from an image.
</summary>
<param name="source"> The image to read from. </param>
<param name="destination"> A valid pointer to a preallocated memory area to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="region"> The region of elements to read. </param>
<param name="sourceRowPitch"> The size of a row of pixels of <paramref name="destination"/> in bytes. </param>
<param name="sourceSlicePitch"> The size of a 2D slice of pixels of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToBuffer``1(``0[],Cloo.ComputeBufferBase{``0},System.Boolean,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The array to read from. </param>
<param name="destination"> The buffer to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToBuffer``1(``0[],Cloo.ComputeBufferBase{``0},System.Boolean,System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The array to read from. </param>
<param name="destination"> The buffer to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToBuffer``1(``0[0:,0:],Cloo.ComputeBufferBase{``0},System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The array to read from. </param>
<param name="destination"> The buffer to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToBuffer``1(``0[0:,0:,0:],Cloo.ComputeBufferBase{``0},System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The array to read from. </param>
<param name="destination"> The buffer to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToBuffer``1(``0[0:,0:],Cloo.ComputeBufferBase{``0},System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,Cloo.SysIntX2,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The array to read from. </param>
<param name="destination"> The buffer to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="sourceRowPitch"> The size of a row of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationRowPitch"> The size of a row of elements of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToBuffer``1(``0[0:,0:,0:],Cloo.ComputeBufferBase{``0},System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Int64,System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to a buffer.
</summary>
<typeparam name="T"> The type of data in the buffer. </typeparam>
<param name="source"> The array to read from. </param>
<param name="destination"> The buffer to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="sourceRowPitch"> The size of a row of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationRowPitch"> The size of a row of elements of <paramref name="destination"/> in bytes. </param>
<param name="sourceSlicePitch"> The size of a 2D slice of elements of <paramref name="source"/> in bytes. </param>
<param name="destinationSlicePitch"> The size of a 2D slice of elements of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToImage(System.IntPtr,Cloo.ComputeImage,System.Boolean,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to an image.
</summary>
<param name="source"> A pointer to a memory area to read from. </param>
<param name="destination"> The image to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToImage(System.IntPtr,Cloo.ComputeImage2D,System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to an image.
</summary>
<param name="source"> A pointer to a memory area to read from. </param>
<param name="destination"> The image to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToImage(System.IntPtr,Cloo.ComputeImage3D,System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to an image.
</summary>
<param name="source"> A pointer to a memory area to read from. </param>
<param name="destination"> The image to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToImage(System.IntPtr,Cloo.ComputeImage2D,System.Boolean,Cloo.SysIntX2,Cloo.SysIntX2,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to an image.
</summary>
<param name="source"> A pointer to a memory area to read from. </param>
<param name="destination"> The image to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="destinationRowPitch"> The size of a row of pixels of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.WriteToImage(System.IntPtr,Cloo.ComputeImage3D,System.Boolean,Cloo.SysIntX3,Cloo.SysIntX3,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to write data to an image.
</summary>
<param name="source"> A pointer to a memory area to read from. </param>
<param name="destination"> The image to write to. </param>
<param name="blocking"> The mode of operation of this command. If <c>true</c> this call will not return until the command has finished execution. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to write. </param>
<param name="destinationRowPitch"> The size of a row of pixels of <paramref name="destination"/> in bytes. </param>
<param name="destinationSlicePitch"> The size of a 2D slice of pixels of <paramref name="destination"/> in bytes. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.#ctor(Cloo.ComputeContext,Cloo.ComputeDevice,Cloo.ComputeCommandQueueFlags)">
<summary>
Creates a new <see cref="T:Cloo.ComputeCommandQueue"/>.
</summary>
<param name="context"> A <see cref="T:Cloo.ComputeContext"/>. </param>
<param name="device"> A <see cref="T:Cloo.ComputeDevice"/> associated with the <paramref name="context"/>. It can either be one of <see cref="P:Cloo.ComputeContext.Devices"/> or have the same <see cref="T:Cloo.ComputeDeviceTypes"/> as the <paramref name="device"/> specified when the <paramref name="context"/> is created. </param>
<param name="properties"> The properties for the <see cref="T:Cloo.ComputeCommandQueue"/>. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.AcquireGLObjects(System.Collections.Generic.ICollection{Cloo.ComputeMemory},System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to acquire a collection of <see cref="T:Cloo.ComputeMemory"/>s that have been previously created from OpenGL objects.
</summary>
<param name="memObjs"> A collection of OpenCL memory objects that correspond to OpenGL objects. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new <see cref="T:Cloo.ComputeEvent"/> identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.AddBarrier">
<summary>
Enqueues a barrier.
</summary>
<remarks> A barrier ensures that all queued commands have finished execution before the next batch of commands can begin execution. </remarks>
</member>
<member name="M:Cloo.ComputeCommandQueue.AddMarker">
<summary>
Enqueues a marker.
</summary>
</member>
<member name="M:Cloo.ComputeCommandQueue.Copy``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data between buffers.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new event identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.Copy``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeBufferBase{``0},Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Int64,System.Int64,System.Int64,System.Int64,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy a 2D or 3D region of elements between two buffers.
</summary>
<typeparam name="T"> The type of data in the buffers. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="sourceRowPitch"> The size of the source buffer row in bytes. If set to zero then <paramref name="sourceRowPitch"/> equals <c>region.X * sizeof(T)</c>. </param>
<param name="sourceSlicePitch"> The size of the source buffer 2D slice in bytes. If set to zero then <paramref name="sourceSlicePitch"/> equals <c>region.Y * sizeof(T) * sourceRowPitch</c>. </param>
<param name="destinationRowPitch"> The size of the destination buffer row in bytes. If set to zero then <paramref name="destinationRowPitch"/> equals <c>region.X * sizeof(T)</c>. </param>
<param name="destinationSlicePitch"> The size of the destination buffer 2D slice in bytes. If set to zero then <paramref name="destinationSlicePitch"/> equals <c>region.Y * sizeof(T) * destinationRowPitch</c>. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new <see cref="T:Cloo.ComputeEvent"/> identifying this command is attached to the end of the collection. </param>
<remarks> Requires OpenCL 1.1. </remarks>
</member>
<member name="M:Cloo.ComputeCommandQueue.Copy``1(Cloo.ComputeBufferBase{``0},Cloo.ComputeImage,System.Int64,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from buffer to <see cref="T:Cloo.ComputeImage"/>.
</summary>
<typeparam name="T"> The type of data in <paramref name="source"/>. </typeparam>
<param name="source"> The buffer to copy from. </param>
<param name="destination"> The image to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new <see cref="T:Cloo.ComputeEvent"/> identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.Copy``1(Cloo.ComputeImage,Cloo.ComputeBufferBase{``0},Cloo.SysIntX3,System.Int64,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data from <see cref="T:Cloo.ComputeImage"/> to buffer.
</summary>
<param name="source"> The image to copy from. </param>
<param name="destination"> The buffer to copy to. </param>
<param name="sourceOffset"> The <paramref name="source"/> element position where reading starts. </param>
<param name="destinationOffset"> The <paramref name="destination"/> element position where writing starts. </param>
<param name="region"> The region of elements to copy. </param>
<param name="events"> A collection of events that need to complete before this particular command can be executed. If <paramref name="events"/> is not <c>null</c> a new <see cref="T:Cloo.ComputeEvent"/> identifying this command is attached to the end of the collection. </param>
</member>
<member name="M:Cloo.ComputeCommandQueue.Copy(Cloo.ComputeImage,Cloo.ComputeImage,Cloo.SysIntX3,Cloo.SysIntX3,Cloo.SysIntX3,System.Collections.Generic.ICollection{Cloo.ComputeEventBase})">
<summary>
Enqueues a command to copy data between <see cref="T:Cloo.ComputeImage"/>s.
</summary>
<param name="source"> The <see cref="T:Cloo.ComputeImage"/> to copy from. </param>
<param name="destination"> The <see cref="T:Cloo.ComputeImage"/> to copy to. </param>