Home
last modified time | relevance | path

Searched refs:glp (Results 1 – 25 of 480) sorted by relevance

12345678910>>...20

/dports/emulators/aranym/aranym-1.1.0/atari/nfosmesa/
H A Dtinygl_load.c23 struct _gl_tiny *glp = ≷ in ldg_init_tiny_gl() local
32 GL_CHECK(glp->Begin); in ldg_init_tiny_gl()
34 GL_CHECK(glp->Clear); in ldg_init_tiny_gl()
38 GL_CHECK(glp->Color3f); in ldg_init_tiny_gl()
40 GL_CHECK(glp->Disable); in ldg_init_tiny_gl()
42 GL_CHECK(glp->Enable); in ldg_init_tiny_gl()
44 GL_CHECK(glp->End); in ldg_init_tiny_gl()
46 GL_CHECK(glp->Lightfv); in ldg_init_tiny_gl()
54 GL_CHECK(glp->Orthof); in ldg_init_tiny_gl()
106 GL_CHECK(glp->Flush); in ldg_init_tiny_gl()
[all …]
H A Dosmesa_load.c49 GL_CHECK(glp->GetString); in ldg_init_osmesa()
75 GL_CHECK(glp->Clear); in ldg_init_osmesa()
85 GL_CHECK(glp->LogicOp); in ldg_init_osmesa()
119 GL_CHECK(glp->Enable); in ldg_init_osmesa()
149 GL_CHECK(glp->Finish); in ldg_init_osmesa()
151 GL_CHECK(glp->Flush); in ldg_init_osmesa()
153 GL_CHECK(glp->Hint); in ldg_init_osmesa()
165 GL_CHECK(glp->Accum); in ldg_init_osmesa()
169 GL_CHECK(glp->Ortho); in ldg_init_osmesa()
217 GL_CHECK(glp->Begin); in ldg_init_osmesa()
[all …]
H A Dtinygl_loadslb.c645 struct _gl_tiny *glp = ≷ in slb_init_tiny_gl() local
647 glp->Begin = exec_glBegin; in slb_init_tiny_gl()
648 glp->Clear = exec_glClear; in slb_init_tiny_gl()
652 glp->Enable = exec_glEnable; in slb_init_tiny_gl()
653 glp->End = exec_glEnd; in slb_init_tiny_gl()
658 glp->Orthof = exec_glOrthof; in slb_init_tiny_gl()
684 glp->Flush = exec_glFlush; in slb_init_tiny_gl()
691 glp->Hint = exec_glHint; in slb_init_tiny_gl()
693 glp->IsList = exec_glIsList; in slb_init_tiny_gl()
694 glp->Lightf = exec_glLightf; in slb_init_tiny_gl()
[all …]
H A Dosmesa_loadslb.c24757 glp->Clear = exec_glClear; in slb_init_osmesa()
24795 glp->Flush = exec_glFlush; in slb_init_osmesa()
24796 glp->Hint = exec_glHint; in slb_init_osmesa()
24802 glp->Accum = exec_glAccum; in slb_init_osmesa()
24804 glp->Ortho = exec_glOrtho; in slb_init_osmesa()
24828 glp->Begin = exec_glBegin; in slb_init_osmesa()
24829 glp->End = exec_glEnd; in slb_init_osmesa()
24962 glp->Rectd = exec_glRectd; in slb_init_osmesa()
24963 glp->Rectf = exec_glRectf; in slb_init_osmesa()
25079 glp->Fogf = exec_glFogf; in slb_init_osmesa()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/jogl/acore/
H A DGLProfile0XBase.java483 if( glp.isGL4bc() ) { in validateGLProfileGL2GL3()
487 } else if(glp.isGL2()) { in validateGLProfileGL2GL3()
489 } else if(glp.isGL4()) { in validateGLProfileGL2GL3()
491 } else if(glp.isGL3()) { in validateGLProfileGL2GL3()
514 if( glp.isGL4bc() ) { in validateGLProfileGL4ES3()
537 if( glp.isGL4bc() ) { in validateGLProfileGL2ES2()
541 } else if(glp.isGL2()) { in validateGLProfileGL2ES2()
543 } else if(glp.isGL4()) { in validateGLProfileGL2ES2()
545 } else if(glp.isGL3()) { in validateGLProfileGL2ES2()
576 if( glp.isGL4bc() ) { in validateGLProfileGL2ES1()
[all …]
H A DTestGLProfile01NEWT.java73 validateOffline("default", glp); in test01GLProfileDefault()
74 validateOnlineOnscreen("default", glp); in test01GLProfileDefault()
82 validateOffline("maxProgrammable", glp); in test02GLProfileMaxProgrammable()
91 validateOffline("maxFixedFunc", glp); in test03GLProfileMaxFixedFunc()
92 validateOnlineOnscreen("maxFixedFunc", glp); in test03GLProfileMaxFixedFunc()
102 validateOffline(GLProfile.GL2ES1, glp); in test04GLProfileGL2ES1()
113 validateOffline(GLProfile.GL2ES2, glp); in test05GLProfileGL2ES2()
124 validateOffline(GLProfile.GL4ES3, glp); in test06GLProfileGL4ES3()
135 validateOffline(GLProfile.GL2GL3, glp); in test07GLProfileGL2GL3()
142 validateOffline(glps, glp); in testSpecificProfile()
[all …]
H A DTestGLAutoDrawableFactoryGLProfileDeviceNEWT.java151 if(null != glp) { in test01ES2OnEGL()
152 Assert.assertTrue("Not a GLES2 profile but "+glp, glp.isGLES2()); in test01ES2OnEGL()
153 Assert.assertTrue("Not a GL2ES2 profile but "+glp, glp.isGL2ES2()); in test01ES2OnEGL()
155 if(null == glp) { in test01ES2OnEGL()
174 if(null != glp) { in test02GLOnEGL()
175 Assert.assertTrue("Not a GL2GL3 profile but "+glp, glp.isGL2GL3()); in test02GLOnEGL()
177 if(null == glp || !glp.isGL2ES2()) { in test02GLOnEGL()
200 Assert.assertTrue("Not a GLES2 profile but "+glp, glp.isGLES2()); in test11ES2OnDesktop()
201 Assert.assertTrue("Not a GL2ES2 profile but "+glp, glp.isGL2ES2()); in test11ES2OnDesktop()
228 Assert.assertTrue("Not a GL2GL3 profile but "+glp, glp.isGL2GL3()); in test12GLOnDesktop()
[all …]
H A DTestGLDebug00NEWT.java141 if( null == glp ) { in test01GL2GL3DebugDisabled()
150 if( null == glp ) { in test02GL2GL3DebugEnabled()
159 if( null == glp ) { in test11GLES2DebugDisabled()
168 if( null == glp ) { in test12GLES2DebugEnabled()
197 if( null == glp ) { in test03GL2GL3DebugError()
200 testX2GLDebugError(glp); in test03GL2GL3DebugError()
206 if( null == glp ) { in test13GLES2DebugError()
209 testX2GLDebugError(glp); in test13GLES2DebugError()
234 if( null == glp ) { in test04GL2GL3DebugInsert()
237 testX3GLDebugInsert(glp); in test04GL2GL3DebugInsert()
[all …]
H A DTestGLProfile03NEWTOffscreen.java48 final GLProfile glp = GLProfile.getDefault(); in test01GLProfileDefault() local
49 System.out.println("GLProfile.getDefault(): "+glp); in test01GLProfileDefault()
58 final GLProfile glp = GLProfile.getDefault(); in test02GLProfileDefaultBitmap() local
59 System.out.println("GLProfile.getDefault(): "+glp); in test02GLProfileDefaultBitmap()
60 final GLCapabilities caps = new GLCapabilities(glp); in test02GLProfileDefaultBitmap()
77 final GLProfile glp = GLProfile.getMaxFixedFunc(true); in test03GLProfileMaxFixedFunc() local
89 final GLProfile glp = GLProfile.getGL2ES1(); in test04GLProfileGL2ES1() local
100 final GLProfile glp = GLProfile.getGL2ES2(); in test05GLProfileGL2ES2() local
111 final GLProfile glp = GLProfile.getGL4ES3(); in test06GLProfileGL4ES3() local
122 final GLProfile glp = GLProfile.getGL2GL3(); in test07GLProfileGL2GL3() local
[all …]
H A DTestGLDebug01NEWT.java87 final GLWindow window = createWindow(glp, enable); in testX1GLDebugEnableDisable()
119 if( null == glp ) { in test01GL2GL3DebugDisabled()
122 testX1GLDebugEnableDisable(glp, false, null, -1); in test01GL2GL3DebugDisabled()
128 if( null == glp ) { in test02GL2GL3DebugEnabled()
137 if( null == glp ) { in test11GLES2DebugDisabled()
146 if( null == glp ) { in test12GLES2DebugEnabled()
153 final GLWindow window = createWindow(glp, true); in testX3GLDebugError()
178 if( null == glp ) { in test03GL2GL3DebugError()
181 testX3GLDebugError(glp); in test03GL2GL3DebugError()
187 if( null == glp ) { in test13GLES2DebugError()
[all …]
/dports/polish/libgadu/libgadu-1.12.2/test/automatic/
H A Dresolver.c136 memset(&glp, 0, sizeof(glp)); in test()
137 glp.uin = 1; in test()
138 glp.password = ""; in test()
140 glp.async = 1; in test()
142 gs = gg_login(&glp); in test()
227 memset(&glp, 0, sizeof(glp)); in test_set_get()
228 glp.uin = 1; in test_set_get()
229 glp.password = ""; in test_set_get()
230 glp.resolver = 0; in test_set_get()
231 glp.async = 1; in test_set_get()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/jogl/tile/
H A DTestTiledRendering2NEWT.java88 if( null == glp || !glp.isGL2ES3() ) { in getGL2ES3()
92 return glp; in getGL2ES3()
98 if( null == glp ) { in test001_off_gl2___aa0()
106 if( null == glp ) { in test002_off_gl2___aa8()
113 final GLProfile glp = getGL2ES3(); in test011_off_gl2es3_aa0() local
114 if( null == glp ) { in test011_off_gl2es3_aa0()
122 if( null == glp ) { in test012_off_gl2es3_aa8()
130 if( null == glp ) { in test101_on__gl2___aa0()
138 if( null == glp ) { in test102_on__gl2___aa8()
146 if( null == glp ) { in test111_on__gl2es3_aa0()
[all …]
H A DTestTiledPrintingGearsSwingAWT2.java78 static GLProfile glp; field in TestTiledPrintingGearsSwingAWT2
84 glp = GLProfile.get(GLProfile.GL2); in initClass()
85 Assert.assertNotNull(glp); in initClass()
256 final GLCapabilities caps = new GLCapabilities(glp); in test001_flip1_norm_layout0_layered0()
262 final GLCapabilities caps = new GLCapabilities(glp); in test002_flip1_norm_layout1_layered0()
268 final GLCapabilities caps = new GLCapabilities(glp); in test003_flip1_norm_layout0_layered1()
274 final GLCapabilities caps = new GLCapabilities(glp); in test004_flip1_norm_layout1_layered1()
283 final GLCapabilities caps = new GLCapabilities(glp); in test011_flip1_bitm_layout0_layered0()
293 final GLCapabilities caps = new GLCapabilities(glp); in test012_flip1_bitm_layout1_layered0()
303 final GLCapabilities caps = new GLCapabilities(glp); in test013_flip1_bitm_layout0_layered1()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objtools/flatfile/
H A Dgenref.cpp519 for(glp = gnp->glp; glp != NULL; glp = glp->next) in sort_gnp_list()
524 for(index = 0, glp = gnp->glp; glp != NULL; glp = glp->next) in sort_gnp_list()
734 for(glp = gnp->glp; glp != NULL; glp = glp->next) in DoWeHaveGeneInBetween()
1127 for(glp = gnp->glp; glp != NULL && glp->segnum == 1; glp = glp->next) in MessWithSegGenes()
2343 for(glp = gelop; glp != NULL; glp = glp->next) in fta_sort_feat_list()
2348 for(index = 0, glp = gelop; glp != NULL; glp = glp->next) in fta_sort_feat_list()
2690 for(glp = glpstart;; glp = glp->next) in LocusTagCheck()
2733 for(glp = gnp->glp; glp != NULL; glp = glp->next) in MiscFeatsWithoutGene()
2765 for(glp = gnp->glp; glp != NULL; glp = glp->next) in RemoveUnneededMiscFeats()
2794 for(glpprev = NULL, glp = gnp->glp; glp != NULL; glp = glpnext) in RemoveUnneededMiscFeats()
[all …]
/dports/biology/ncbi-toolkit/ncbi/demo/
H A Dfdselect.c89 GiListPtr glp; member
261 GiListPtr glp; in GiListNew() local
265 glp->seq_num = MemNew(sizeof(Int4) * glp->allocated); in GiListNew()
268 return glp; in GiListNew()
276 MemFree(glp); in GiListFree()
291 if(glp->count >= glp->allocated) { in ReadGiList()
293 glp->seq_num = Realloc(glp->seq_num, in ReadGiList()
304 glp->seq_num[glp->count] = seqnum; in ReadGiList()
386 if(glp->count >= glp->allocated) { in FDGetGiListByQuery()
388 glp->seq_num = Realloc(glp->seq_num, in FDGetGiListByQuery()
[all …]
/dports/polish/libgadu/libgadu-1.12.2/examples/
H A Dstatus.c33 struct gg_login_params glp; in main() local
46 memset(&glp, 0, sizeof(glp)); in main()
47 glp.uin = atoi(argv[1]); in main()
48 glp.password = argv[2]; in main()
50 glp.encoding = GG_ENCODING_UTF8; in main()
51 glp.protocol_version = GG_PROTOCOL_VERSION_110; in main()
53 glp.status = GG_STATUS_INVISIBLE_DESCR; in main()
54 glp.status_descr = argv[3]; in main()
56 if (!(gs = gg_login(&glp))) { in main()
/dports/graphics/kludge3d/kludge3d-20040822/src/
H A Dframe.c107 GtkWidget * glp; in create_frames() local
113 glp = frame_new( create_view( VIEW_XY ), VIEW_XY ); in create_frames()
114 gtk_table_attach_defaults( GTK_TABLE( table ), glp, 0, 1, 0, 1 ); in create_frames()
115 table_child[ VIEW_XY ] = glp; in create_frames()
118 glp = frame_new( create_view( VIEW_YZ ), VIEW_YZ ); in create_frames()
119 gtk_table_attach_defaults( GTK_TABLE( table ), glp, 1, 2, 0, 1 ); in create_frames()
120 table_child[ VIEW_YZ ] = glp; in create_frames()
123 glp = frame_new( create_view( VIEW_XZ ), VIEW_XZ ); in create_frames()
125 table_child[ VIEW_XZ ] = glp; in create_frames()
128 glp = frame_new( create_view( VIEW_3D ), VIEW_3D ); in create_frames()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/opengl/util/texture/awt/
H A DAWTTextureIO.java62 public static TextureData newTextureData(final GLProfile glp, final BufferedImage image, in newTextureData() argument
64 return newTextureDataImpl(glp, image, 0, 0, mipmap); in newTextureData()
92 public static TextureData newTextureData(final GLProfile glp, final BufferedImage image, in newTextureData() argument
100 return newTextureDataImpl(glp, image, internalFormat, pixelFormat, mipmap); in newTextureData()
115 …public static Texture newTexture(final GLProfile glp, final BufferedImage image, final boolean mip… in newTexture() argument
116 final TextureData data = newTextureData(glp, image, mipmap); in newTexture()
122 private static TextureData newTextureDataImpl(final GLProfile glp, in newTextureDataImpl() argument
127 return new AWTTextureData(glp, internalFormat, pixelFormat, mipmap, image); in newTextureDataImpl()
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/opengl/util/
H A DGLFixedArrayHandlerFlat.java55 final GLPointerFunc glp = gl.getGL2ES1(); in syncData() local
58 glp.glVertexPointer(ad); in syncData()
61 glp.glNormalPointer(ad); in syncData()
64 glp.glColorPointer(ad); in syncData()
67 glp.glTexCoordPointer(ad); in syncData()
76 final GLPointerFunc glp = gl.getGL2ES1(); in enableState() local
78 glp.glEnableClientState(ad.getIndex()); in enableState()
80 glp.glDisableClientState(ad.getIndex()); in enableState()
H A DGLFixedArrayHandler.java58 final GLPointerFunc glp = gl.getGL2ES1(); in enableState() local
63 glp.glVertexPointer(ad); in enableState()
66 glp.glNormalPointer(ad); in enableState()
69 glp.glColorPointer(ad); in enableState()
72 glp.glTexCoordPointer(ad); in enableState()
80 glp.glEnableClientState(ad.getIndex()); in enableState()
82 glp.glDisableClientState(ad.getIndex()); in enableState()
/dports/polish/libgadu/libgadu-1.12.2/test/manual/
H A Dclient.c82 struct gg_login_params glp; in main() local
94 memset(&glp, 0, sizeof(glp)); in main()
95 glp.async = 1; in main()
106 glp.async = 0; in main()
110 glp.tls = 1; in main()
128 glp.last_sysmsg = atoi(optarg); in main()
165 glp.server_addr = inet_addr(host); in main()
166 glp.server_port = port; in main()
181 glp.uin = config_uin; in main()
182 glp.password = config_password; in main()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/opengl/util/
H A DGLPixelBuffer.java349 convert(glp, pixFmt, pack, df, dt); in convert()
363 if( glp.isGL3ES3() ) { in convert()
373 if( glp.isGL2GL3() ) { in convert()
378 if( glp.isGL2GL3() ) { in convert()
383 if( glp.isGL2GL3() ) { in convert()
388 if( glp.isGL2GL3() ) { in convert()
398 if( glp.isGL2GL3() ) { in convert()
407 if( glp.isGL2GL3() ) { in convert()
412 if( glp.isGL2GL3() ) { in convert()
476 this(glp, pixFmt, 0, 0, pack, true); in GLPixelAttributes()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/opengl/util/texture/
H A DTextureIO.java496 final GLProfile glp = gl.getGLProfile(); in newTexture() local
525 final GLProfile glp = gl.getGLProfile(); in newTexture() local
557 final GLProfile glp = gl.getGLProfile(); in newTexture() local
1019 data = new TextureData(glp, internalFormat, in newTextureData()
1033 data = new TextureData(glp, internalFormat, in newTextureData()
1075 return new TextureData(glp, internalFormat, in newTextureData()
1113 if(glp.isGL2ES3()) { in newTextureData()
1119 return new TextureData(glp, internalFormat, in newTextureData()
1160 if(glp.isGL2ES3()) { in newTextureData()
1166 return new TextureData(glp, internalFormat, in newTextureData()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/opengl/egl/
H A DEGLGLCapabilities.java57 …final long eglcfg, final int eglcfgid, final int visualID, final GLProfile glp, final int renderab… in EGLGLCapabilities() argument
58 super( glp ); in EGLGLCapabilities()
61 if(!isCompatible(glp, renderableType)) { in EGLGLCapabilities()
62 throw new GLException("Requested GLProfile "+glp+ in EGLGLCapabilities()
102 public static boolean isCompatible(final GLProfile glp, final int renderableType) { in isCompatible() argument
103 if(null == glp) { in isCompatible()
106 if(0 != (renderableType & EGLExt.EGL_OPENGL_ES3_BIT_KHR) && glp.usesNativeGLES3()) { in isCompatible()
109 if(0 != (renderableType & EGL.EGL_OPENGL_ES2_BIT) && glp.usesNativeGLES2()) { in isCompatible()
112 if(0 != (renderableType & EGL.EGL_OPENGL_ES_BIT) && glp.usesNativeGLES1()) { in isCompatible()
115 if(0 != (renderableType & EGL.EGL_OPENGL_BIT) && !glp.usesNativeGLES()) { in isCompatible()
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/opengl/util/awt/
H A DAWTGLPixelBuffer.java183 return glp.isGLES() ? awtPixelAttributesIntRGBA : awtPixelAttributesIntBGRA; in getAttributes()
194 return getAWTPixelFormat(glp, componentCount).comp; in getHostPixelComp()
209 public int getAWTFormat(final GLProfile glp, final int componentCount) { in getAWTFormat() argument
214 return glp.isGLES() ? BufferedImage.TYPE_INT_BGR : BufferedImage.TYPE_INT_RGB; in getAWTFormat()
218 public PixelFormat getAWTPixelFormat(final GLProfile glp, final int componentCount) { in getAWTPixelFormat() argument
220 return glp.isGLES() ? PixelFormat.RGBx8888 : PixelFormat.BGRA8888; in getAWTPixelFormat()
222 return glp.isGLES() ? PixelFormat.RGBx8888 : PixelFormat.BGRx8888; in getAWTPixelFormat()
326 public AWTGLPixelBuffer initSingleton(final GLProfile glp, final int componentCount, in initSingleton() argument
328 final GLPixelAttributes pixelAttributes = getAttributes(glp, componentCount); in initSingleton()
329 final PixelFormat awtPixelFormat = getAWTPixelFormat(glp, componentCount); in initSingleton()
[all …]

12345678910>>...20