/external/mesa3d/src/mesa/drivers/dri/i915/ |
intel_tex.c | 148 * cube face, since it's all just slices to the miptree code. 151 slice = tex_image->Face; 166 slice = tex_image->Face;
|
intel_tex_copy.c | 71 intelImage->base.Base.Face + slice,
|
intel_tex_subimage.c | 112 intelImage->mt, texImage->Level, texImage->Face,
|
intel_tex_image.c | 170 intelImage->mt, image->Level, image->Face,
|
/external/opencv/cvaux/src/ |
cvfacedetection.cpp | 195 Face * tmp; 422 //class Face 436 ListElem::ListElem(Face * pFace,ListElem * pHead) 444 }//ListElem::ListElem(Face * pFace) 474 int List::AddElem(Face * pFace) 478 }//List::AddElem(Face * pFace) 480 Face * List::GetData() 484 }//Face * List::GetData()
|
/external/skia/src/gpu/ |
GrUserStencilSettings.h | 112 typedef GrTStencilFaceSettings<GrUserStencilTest, GrUserStencilOp> Face; 199 const Face fFront; 201 const Face fBack; 246 // face gets disabled in that case (e.g. Test=kAlwaysIfInClip, PassOp=kKeep), or else the
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
intel_tex_copy.c | 80 /* account for view parameters and face index */ 83 int dst_slice = slice + intelImage->base.Base.Face +
|
intel_copy_image.c | 190 /* Cube maps actually have different images per face */ 192 src_z = src_image->Face; 207 /* Cube maps actually have different images per face */ 209 dst_z = dst_image->Face;
|
intel_tex.c | 134 int face; local 158 for (face = 0; face < numFaces; face++) { 160 struct gl_texture_image *image = texobj->Image[face][level]; 225 * cube face, since it's all just slices to the miptree code. 228 slice = tex_image->Face; 248 slice = tex_image->Face; 276 int face; local 279 for (face = 0; face < numFaces; face++) [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_fs_exec.c | 130 machine->Face = (float) (quad->input.facing * -2 + 1);
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_tex_copy.c | 49 const GLuint face = timg->base.Base.Face; local 85 intptr_t dst_offset = radeon_miptree_image_offset(timg->mt, face, level); 88 fprintf(stderr, "%s: copying to face %d, level %d\n", 89 __func__, face, level);
|
/external/mesa3d/src/mesa/state_tracker/ |
st_texture.c | 238 * Map a texture image and return the address for a particular 2D face/slice/ 239 * layer. The stImage indicates the cube face and mipmap level. The slice 274 z += stImage->base.Face; 309 transfer = &stImage->transfer[slice + stImage->base.Face].transfer; 352 GLuint face) 365 * cube map face which was set up with mismatched texture sizes. 379 face = 0; 386 for (i = face; i < face + depth; i++) {
|
st_cb_texture.c | 300 unsigned z = slice + stImage->base.Face; 2443 GLuint face; local 2700 GLuint face; local 2783 int face; local [all...] |
st_cb_copyimage.c | 643 src_z += src_image->Face; 658 dst_z += dst_image->Face;
|
/packages/apps/Camera2/src/com/android/camera/ |
PhotoUI.java | 24 import android.hardware.Camera.Face; 61 // TODO: Remove face view logic if UX does not bring it back within a month. 433 public void onFaceDetection(Face[] faces, CameraAgent.CameraProxy camera) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
ItsSerializer.java | 29 import android.hardware.camera2.params.Face; 113 private static Object serializeFace(Face face) 116 faceObj.put("bounds", serializeRect(face.getBounds())); 117 faceObj.put("score", face.getScore()); 118 faceObj.put("id", face.getId()); 119 if (face.getLeftEyePosition() != null) { 120 faceObj.put("leftEye", serializePoint(face.getLeftEyePosition())); 122 if (face.getRightEyePosition() != null) { 123 faceObj.put("rightEye", serializePoint(face.getRightEyePosition())) [all...] |
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/ |
CameraMetadataGetter.java | 33 import android.hardware.camera2.params.Face; 289 private static Object serializeFace(Face face) 292 faceObj.put("bounds", serializeRect(face.getBounds())); 293 faceObj.put("score", face.getScore()); 294 faceObj.put("id", face.getId()); 295 faceObj.put("leftEye", serializePoint(face.getLeftEyePosition())); 296 faceObj.put("rightEye", serializePoint(face.getRightEyePosition())); 297 faceObj.put("mouth", serializePoint(face.getMouthPosition())); 485 } else if (keyType == Face.class) [all...] |
/frameworks/base/core/java/android/hardware/camera2/ |
CaptureResult.java | [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/ |
CaptureRequestTest.java | 34 import android.hardware.camera2.params.Face; 408 * Test face detection modes and results. [all...] |
/external/pdfium/core/fxge/ge/ |
cfx_font.cpp | 60 FXFT_Face* Face, 74 if (FXFT_Open_Face(library, &args, faceIndex, Face)) 260 void CFX_Font::SetFace(FXFT_Face face) { 262 m_Face = face;
|
/external/skia/src/gpu/vk/ |
GrVkPipeline.cpp | 191 // Set front face 192 const GrStencilSettings::Face& front = stencilSettings.front(); 201 // Set back face 205 const GrStencilSettings::Face& back = stencilSettings.back();
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_exec.h | 385 float Face; /**< +1 if front facing, -1 if back facing */
|
/frameworks/base/core/java/android/hardware/ |
Camera.java | 234 * Hardware face detection. It does not use much CPU. 239 * Software face detection. It uses some CPU. [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
CameraMetadataTest.java | 38 import android.hardware.camera2.params.Face; [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
CropImage.java | 78 boolean mWaitingToPick; // Whether we are wait the user to pick a face. 420 FaceDetector.Face[] mFaces = new FaceDetector.Face[3]; 423 // For each face, we create a HightlightView for it. 424 private void handleFace(FaceDetector.Face f) { 468 // Create a default HightlightView if we found no face in the picture. 498 // Scale the image down for faster face detection.
|