Searched refs:ar (Results 1 - 25 of 393) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/
H A Dcreate-android-cross-file.sh18 ar = '$ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/$arch-ar'
/xsrc/external/mit/mesa-demos/dist/src/egl/opengl/
H A Degltri.c81 GLfloat ar = (GLfloat) width / (GLfloat) height; local in function:reshape
87 glFrustum(-ar, ar, -1, 1, 5.0, 60.0);
/xsrc/external/mit/mesa-demos/dist/src/tests/
H A Dbug_3101.c75 GLfloat ar = (float) width / (float) height; local in function:Reshape
81 glFrustum( -ar, ar, -1.0, 1.0, Near, Far );
H A Dfogcoord.c45 GLfloat ar = (float) width / (float) height; local in function:Reshape
51 glFrustum( -ar, ar, -1.0, 1.0, Near, Far );
H A Dinvert.c100 GLfloat ar = (float) width / (float) height; local in function:Reshape
106 glFrustum( -ar, ar, -1.0, 1.0, Near, Far );
H A Dseccolor.c66 GLfloat ar = (float) width / (float) height; local in function:Reshape
72 glFrustum( -ar, ar, -1.0, 1.0, Near, Far );
H A Dcopypixrate.c29 GLfloat ar; local in function:DrawTestImage
41 ar = (float) WinWidth / WinHeight;
45 glFrustum(-ar, ar, -1.0, 1.0, 5.0, 25.0);
H A Dantialias.c142 GLfloat ar = (float) width / (float) height; local in function:Reshape
146 glOrtho(-2.0*ar, 2.0*ar, -2.0, 2.0, -1.0, 1.0);
H A Darbvpwarpmesh.c94 float ar = (float) width / (float) height; local in function:Reshape
98 glFrustum( -1.0 * ar, 1.0 * ar, -1.0, 1.0, 5.0, 25.0 );
H A Dbumpmap.c83 GLfloat ar = (float) width / (float) height; local in function:Reshape
87 glFrustum( -ar, ar, -1.0, 1.0, Near, Far );
H A Dfbotest1.c77 float ar = (float) width / (float) height;
83 glFrustum( -ar, ar, -1.0, 1.0, 5.0, 25.0 );
H A Dfbotest2.c112 float ar = (float) width / (float) height; local in function:Reshape
117 glFrustum( -ar, ar, -1.0, 1.0, 5.0, 25.0 );
/xsrc/external/mit/mesa-demos/dist/src/egl/opengles1/
H A Dtri.c119 GLfloat ar = (GLfloat) width / (GLfloat) height; local in function:reshape
126 glFrustumf(-ar, ar, -1, 1, 5.0, 60.0);
128 glFrustum(-ar, ar, -1, 1, 5.0, 60.0);
H A Ddrawtex.c44 GLfloat ar = (GLfloat) width / (GLfloat) height; local in function:reshape
52 glFrustumf(-ar, ar, -1, 1, 5.0, 60.0);
54 glFrustum(-ar, ar, -1, 1, 5.0, 60.0);
H A Dbindtex.c90 GLfloat ar; local in function:use_pbuffer
96 ar = (GLfloat) width / (GLfloat) height;
102 glFrustumf(-ar, ar, -1, 1, 1.0, 10.0);
347 GLfloat ar = (GLfloat) width / (GLfloat) height; local in function:reshape
355 glFrustumf(-ar, ar, -1, 1, 5.0, 60.0);
/xsrc/external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/
H A Dlunr.ar.js20 !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ar=function(){this.pipeline.reset(),this.pipeline.add(e.ar.trimmer,e.ar.stopWordFilter,e.ar.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ar.stemmer))},e.ar.wordCharacters="ء-ٛٱـ",e.ar.trimmer=e.trimmerSupport.generateTrimmer(e.ar.wordCharacters),e.Pipeline.registerFunction(e.ar.trimmer,"trimmer-ar"), class in class:e
[all...]
/xsrc/external/mit/mesa-demos/dist/src/demos/
H A Dtextures.c75 GLfloat ar = TexAspect[i]; local in function:DrawTextures
86 glTexCoord2f( -0.5, -0.5 ); glVertex2f( -ar, -1.0 );
87 glTexCoord2f( 1.5, -0.5 ); glVertex2f( ar, -1.0 );
88 glTexCoord2f( 1.5, 1.5 ); glVertex2f( ar, 1.0 );
89 glTexCoord2f( -0.5, 1.5 ); glVertex2f( -ar, 1.0 );
91 glTexCoord2f( 0.0, 0.0 ); glVertex2f( -ar, -1.0 );
92 glTexCoord2f( 1.0, 0.0 ); glVertex2f( ar, -1.0 );
93 glTexCoord2f( 1.0, 1.0 ); glVertex2f( ar, 1.0 );
94 glTexCoord2f( 0.0, 1.0 ); glVertex2f( -ar, 1.0 );
H A Dvao_demo.c233 GLfloat ar = (float) width / (float) height; local in function:Reshape
239 glFrustum( -ar, ar, -1.0, 1.0, Near, Far );
/xsrc/external/mit/mesa-demos/dist/src/trivial/
H A Dsub-tex.c35 float ar = (float) width / height; local in function:Reshape
39 glOrtho(-ar, ar, -1.0, 1.0, -1.0, 1.0);
H A Dtex-quads.c40 float ar = (float) width / height; local in function:Reshape
44 glOrtho(-ar, ar, -1.0, 1.0, -1.0, 1.0);
/xsrc/external/mit/mesa-demos/dist/src/glsl/
H A Dgeom-stipple-lines.c104 float ar = (float) width / height; local in function:Reshape
109 glFrustum(-ar, ar, -1, 1, 3, 25);
111 glOrtho(-3.0*ar, 3.0*ar, -3.0, 3.0, 3, 25);
H A Dgeom-outlining-130.c92 float ar = (float) width / height; local in function:Reshape
98 glFrustum(-ar, ar, -1, 1, 3, 25);
H A Dtwoside.c115 float ar = (float) width / height; local in function:Reshape
119 glFrustum(-ar, ar, -1, 1, 3, 25);
/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dapple_glx_pbuffer.c191 GLint ar[2]; local in function:get_max_size
244 glGetIntegerv(GL_MAX_VIEWPORT_DIMS, ar);
253 glGetIntegerv(GL_MAX_VIEWPORT_DIMS, ar);
256 *widthresult = ar[0];
257 *heightresult = ar[1];
/xsrc/external/mit/MesaLib/dist/src/glx/apple/
H A Dapple_glx_pbuffer.c192 GLint ar[2]; local in function:get_max_size
241 glGetIntegerv(GL_MAX_VIEWPORT_DIMS, ar);
250 glGetIntegerv(GL_MAX_VIEWPORT_DIMS, ar);
253 *widthresult = ar[0];
254 *heightresult = ar[1];

Completed in 14 milliseconds

1234567891011>>