コード例 #1
0
ファイル: CL10.cs プロジェクト: gandalfliang/cloo_netstandard
 public extern static ComputeErrorCode GetGLObjectInfo(
     CLMemoryHandle memobj,
     out ComputeGLObjectType gl_object_type,
     out Int32 gl_object_name);
コード例 #2
0
ファイル: CL10.cs プロジェクト: aokomoriuta/StudiesOfOpenTK
 public static extern ComputeErrorCode GetGLObjectInfo(
     CLMemoryHandle memobj,
     out ComputeGLObjectType gl_object_type,
     out Int32 gl_object_name);
コード例 #3
0
ファイル: CL10.cs プロジェクト: nathanpackard/openCLoo
 public ComputeErrorCode GetGLObjectInfo(CLMemoryHandle memobj, out ComputeGLObjectType gl_object_type, out Int32 gl_object_name)
 {
     return StaticGetGLObjectInfo(memobj, out gl_object_type, out gl_object_name);
 }
コード例 #4
0
ファイル: CL10.cs プロジェクト: yeerkkiller1/Go-AI
 public static unsafe extern ComputeErrorCode GetGLObjectInfo(
     IntPtr memobj,
     ComputeGLObjectType* gl_object_type,
     Int32* gl_object_name);
コード例 #5
0
ファイル: CL10.cs プロジェクト: neilhighley/nanodoctors
 ComputeErrorCode ICL10.GetGLObjectInfo(CLMemoryHandle memobj, out ComputeGLObjectType gl_object_type, out int gl_object_name)
 {
     return GetGLObjectInfo(memobj, out gl_object_type, out gl_object_name);
 }
コード例 #6
0
 ComputeErrorCode ICL10.GetGLObjectInfo(CLMemoryHandle memobj, out ComputeGLObjectType gl_object_type, out int gl_object_name)
 {
     return(GetGLObjectInfo(memobj, out gl_object_type, out gl_object_name));
 }