HomeSort by relevance Sort by last modified time
    Searched defs:aspect (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
camera.hpp 66 double aspect; // Aspect ratio member in struct:cv::detail::CameraParams
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
PerspectiveCamera.java 32 /** Constructs a new {@link PerspectiveCamera} with the given field of view and viewport size. The aspect ratio is derived from
36 * according to the aspect ratio.
55 float aspect = viewportWidth / viewportHeight; local
56 projection.setToProjection(Math.abs(near), Math.abs(far), fieldOfView, aspect); local
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gles2/
SimpleVertexShader.java 66 float aspect = Gdx.graphics.getWidth() / (float)Gdx.graphics.getHeight(); local
67 projection.setToProjection(1.0f, 20.0f, 60.0f, aspect);
  /external/eigen/demos/opengl/
camera.cpp 216 float aspect = float(mVpWidth)/float(mVpHeight); local
221 mProjectionMatrix(0,0) = invtan / aspect;
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.cpp 162 const float aspect[2] = {dim[0] / dim[1], dim[1] / dim[0]}; local
163 const float scene2clip[2] = {1.0f, aspect[0]};
166 (int)floorf(NCELLS_MAJOR * aspect[1])
  /external/ImageMagick/Magick++/lib/
Geometry.cpp 27 return((left_.aspect() == right_.aspect()) &&
327 void Magick::Geometry::aspect(bool aspect_) function in class:Magick::Geometry
332 bool Magick::Geometry::aspect(void) const function in class:Magick::Geometry
  /external/ImageMagick/coders/
rla.c 134 aspect[24+1],
240 count=ReadBlob(image,24,(unsigned char *) rla_info.aspect);
132 aspect[24+1], member in struct:_RLAInfo
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
InverseKinematicsTest.java 58 float aspect = Gdx.graphics.getWidth() / (float)Gdx.graphics.getHeight(); local
59 camera = new OrthographicCamera(15 * aspect, 15);
  /external/opencv3/modules/calib3d/test/
test_chessboardgenerator.cpp 184 double aspect; local
186 fovx, fovy, focalLen, principalPoint, aspect);
249 double aspect; local
251 fovx, fovy, focalLen, principalPoint, aspect);
  /prebuilts/misc/windows/sdl2/test/
testshader.c 337 GLdouble aspect; local
349 aspect = (GLdouble)Width / Height;
350 glOrtho(-3.0, 3.0, -3.0 / aspect, 3.0 / aspect, 0.0, 1.0);
  /frameworks/base/core/java/android/content/res/
CompatibilityInfo.java 49 * This is the maximum aspect ratio we will allow while keeping
489 float aspect = ((float)longSize) / shortSize; local
490 if (aspect > MAXIMUM_ASPECT_RATIO) {
491 aspect = MAXIMUM_ASPECT_RATIO;
493 int newLongSize = (int)(newShortSize * aspect + 0.5f);
  /frameworks/base/rs/java/android/renderscript/
Matrix4f.java 306 * @param aspect aspect ratio of the screen
310 public void loadPerspective(float fovy, float aspect, float near, float far) {
313 float left = bottom * aspect;
314 float right = top * aspect;
320 * projection matrix with aspect ratio defined by the parameters
332 float aspect = ((float)w) / h; local
333 m1.loadFrustum(-aspect,aspect, -1,1, 1,100);
335 float aspect = ((float)h) / w local
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 307 * @param aspect aspect ratio of the screen
311 public void loadPerspective(float fovy, float aspect, float near, float far) {
314 float left = bottom * aspect;
315 float right = top * aspect;
321 * projection matrix with aspect ratio defined by the parameters
333 float aspect = ((float)w) / h; local
334 m1.loadFrustum(-aspect,aspect, -1,1, 1,100);
336 float aspect = ((float)h) / w local
    [all...]
  /packages/apps/DevCamera/src/com/android/devcamera/
CameraInfoCache.java 251 float aspect = mLargestYuvSize.getWidth() / mLargestYuvSize.getHeight(); local
252 aspect = aspect > 1f ? aspect : 1f / aspect;
253 if (aspect > 1.6) {
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineDepthTests.cpp 298 const VkImageAspectFlags aspect = (mapVkFormat(m_depthFormat).order == tcu::TextureFormat::DS ? VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT local
300 m_depthImageSubresourceRange = makeImageSubresourceRange(aspect, 0u, depthImageParams.mipLevels, 0u, depthImageParams.arrayLayers);
    [all...]
vktPipelineStencilTests.cpp 385 const VkImageAspectFlags aspect = (mapVkFormat(m_stencilFormat).order == tcu::TextureFormat::DS ? VK_IMAGE_ASPECT_STENCIL_BIT | VK_IMAGE_ASPECT_DEPTH_BIT local
387 m_stencilImageSubresourceRange = makeImageSubresourceRange(aspect, 0u, stencilImageParams.mipLevels, 0u, stencilImageParams.arrayLayers);
    [all...]
  /external/opencv3/3rdparty/openexr/Imath/
ImathFrustum.h 74 Frustum(T nearPlane, T farPlane, T fovx, T fovy, T aspect);
99 void set(T nearPlane, T farPlane, T fovx, T fovy, T aspect);
139 T aspect() const;
208 inline Frustum<T>::Frustum(T nearPlane, T farPlane, T fovx, T fovy, T aspect)
210 set(nearPlane,farPlane,fovx,fovy,aspect);
301 void Frustum<T>::set(T nearPlane, T farPlane, T fovx, T fovy, T aspect)
312 _top = ((_right - _left) / aspect) / two;
319 _right = (_top - _bottom) * aspect / two;
340 T Frustum<T>::aspect() const function in class:Imath::Frustum
349 "aspect ratio cannot be computed.")
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Smoke.cpp 661 float aspect = static_cast<float>(extent_.width) / static_cast<float>(extent_.height); local
662 const glm::mat4 projection = glm::perspective(0.4f, aspect, 0.1f, 100.0f);
  /external/opencv3/modules/highgui/src/
window_gtk.cpp 232 float aspect = (float)im_width/(float)im_height; local
234 if(aspect > max_aspect){
235 return cvSize( max_width, cvRound(max_width/aspect) );
237 return cvSize( cvRound(max_height*aspect), max_height );
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 1323 float aspect = (float)minimumHeight \/ (float)minimumWidth; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 67 // Aspect to use when rendering this view
278 final String aspect = a.getString(R.styleable.LockPatternView_aspect); local
280 if ("square".equals(aspect)) {
282 } else if ("lock_width".equals(aspect)) {
284 } else if ("lock_height".equals(aspect)) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkinter.py 1532 aspect = wm_aspect variable in class:Wm
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkinter.py 1532 aspect = wm_aspect variable in class:Wm
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 1532 aspect = wm_aspect variable in class:Wm
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 1532 aspect = wm_aspect variable in class:Wm
    [all...]

Completed in 1379 milliseconds

1 2 3