/third_party/skia/src/gpu/ |
D | GrStencilSettings.cpp | 62 memcpy(&fCWFace, &that.fCWFace, sizeof(Face)); in reset() 64 memcpy(&fCWFace, &that.fCWFace, 2 * sizeof(Face)); in reset() 65 static_assert(sizeof(Face) == in reset() 80 return 0 == memcmp(&fCWFace, &that.fCWFace, sizeof(Face)); // Both are single sided. in operator ==() 84 return 0 == memcmp(&fCWFace, &that.fCWFace, 2 * sizeof(Face)); in operator ==() 85 static_assert(sizeof(Face) == in operator ==() 89 static_assert(0 == offsetof(Face, fRef)); in operator ==() 90 static_assert(2 == sizeof(Face::fRef)); in operator ==() 91 static_assert(2 == offsetof(Face, fTest)); in operator ==() 92 static_assert(2 == sizeof(Face::fTest)); in operator ==() [all …]
|
D | GrStencilSettings.h | 76 struct Face : public GrTStencilFaceSettings<GrStencilTest, GrStencilOp> { struct 77 void reset(const GrUserStencilSettings::Face&, bool useStencilClip, int numStencilBits); 81 const Face& singleSidedFace() const { in singleSidedFace() 89 const Face& postOriginCWFace(GrSurfaceOrigin origin) const { in postOriginCWFace() 96 const Face& postOriginCCWFace(GrSurfaceOrigin origin) const { in postOriginCCWFace() 113 Face fCWFace; 114 Face fCCWFace;
|
D | GrUserStencilSettings.h | 113 typedef GrTStencilFaceSettings<GrUserStencilTest, GrUserStencilOp> Face; typedef 204 const Face fCWFace; 206 const Face fCCWFace;
|
/third_party/flutter/skia/src/gpu/ |
D | GrStencilSettings.cpp | 62 memcpy(&fFront, &that.fFront, sizeof(Face)); in reset() 64 memcpy(&fFront, &that.fFront, 2 * sizeof(Face)); in reset() 65 GR_STATIC_ASSERT(sizeof(Face) == in reset() 80 return 0 == memcmp(&fFront, &that.fFront, sizeof(Face)); // Both are single sided. in operator ==() 84 return 0 == memcmp(&fFront, &that.fFront, 2 * sizeof(Face)); in operator ==() 85 GR_STATIC_ASSERT(sizeof(Face) == in operator ==() 89 GR_STATIC_ASSERT(0 == offsetof(Face, fRef)); in operator ==() 90 GR_STATIC_ASSERT(2 == sizeof(Face::fRef)); in operator ==() 91 GR_STATIC_ASSERT(2 == offsetof(Face, fTest)); in operator ==() 92 GR_STATIC_ASSERT(2 == sizeof(Face::fTest)); in operator ==() [all …]
|
D | GrStencilSettings.h | 76 struct Face : public GrTStencilFaceSettings<GrStencilTest, GrStencilOp> { struct 77 void reset(const GrUserStencilSettings::Face&, bool useStencilClip, int numStencilBits); 81 const Face& frontAndBack() const { in frontAndBack() 86 const Face& front(GrSurfaceOrigin origin) const { in front() 90 const Face& back(GrSurfaceOrigin origin) const { in back() 131 Face fFront; 132 Face fBack;
|
D | GrUserStencilSettings.h | 113 typedef GrTStencilFaceSettings<GrUserStencilTest, GrUserStencilOp> Face; typedef 203 const Face fFront; 205 const Face fBack;
|
/third_party/flutter/skia/third_party/externals/imgui/misc/freetype/ |
D | imgui_freetype.cpp | 108 FT_Face Face; member 119 …_Face(ft_library, (uint8_t*)cfg.FontData, (uint32_t)cfg.FontDataSize, (uint32_t)cfg.FontNo, &Face); in InitFont() 122 error = FT_Select_Charmap(Face, FT_ENCODING_UNICODE); in InitFont() 150 if (Face) in CloseFont() 152 FT_Done_Face(Face); in CloseFont() 153 Face = NULL; in CloseFont() 168 FT_Request_Size(Face, &req); in SetPixelHeight() 171 FT_Size_Metrics metrics = Face->size->metrics; in SetPixelHeight() 182 uint32_t glyph_index = FT_Get_Char_Index(Face, codepoint); in LoadGlyph() 185 FT_Error error = FT_Load_Glyph(Face, glyph_index, LoadFlags); in LoadGlyph() [all …]
|
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/ |
D | CubeActivity.java | 38 class Face { class 43 Face(float rotX, float rotY, Sample sample) { in Face() method in Face 171 private Face[] mFaces; 176 mFaces = new Face[] { in CubeRenderer() 177 new Face(0, -rot/2, new ImageShaderSample(res, R.raw.brickwork_texture)), in CubeRenderer() 178 new Face(0, 0 , new SkottieSample(res, R.raw.im_thirsty)), in CubeRenderer() 179 new Face(0, rot , new RuntimeSample(res, R.raw.runtime_shader1)), in CubeRenderer() 180 new Face(rot/2, 0 , new SkottieSample(res, R.raw.permission)), in CubeRenderer() 181 new Face(0, rot/2 , new RuntimeSample(res, R.raw.runtime_shader2)), in CubeRenderer() 236 for (Face f : mFaces) { in drawFaces()
|
/third_party/skia/third_party/externals/imgui/misc/freetype/ |
D | imgui_freetype.cpp | 140 FT_Face Face; member 151 …_Face(ft_library, (uint8_t*)cfg.FontData, (uint32_t)cfg.FontDataSize, (uint32_t)cfg.FontNo, &Face); in InitFont() 154 error = FT_Select_Charmap(Face, FT_ENCODING_UNICODE); in InitFont() 194 if (Face) in CloseFont() 196 FT_Done_Face(Face); in CloseFont() 197 Face = NULL; in CloseFont() 212 FT_Request_Size(Face, &req); in SetPixelHeight() 215 FT_Size_Metrics metrics = Face->size->metrics; in SetPixelHeight() 226 uint32_t glyph_index = FT_Get_Char_Index(Face, codepoint); in LoadGlyph() 229 FT_Error error = FT_Load_Glyph(Face, glyph_index, LoadFlags); in LoadGlyph() [all …]
|
/third_party/flutter/skia/src/gpu/mtl/ |
D | GrMtlDepthStencil.h | 30 struct Face { struct 35 Face fFront; 36 Face fBack;
|
D | GrMtlDepthStencil.mm | 37 MTLStencilDescriptor* skia_stencil_to_mtl(GrStencilSettings::Face face) { 91 void skia_stencil_to_key(GrStencilSettings::Face face, GrMtlDepthStencil::Key::Face* faceKey) { 121 memcpy(&depthStencilKey.fBack, &depthStencilKey.fFront, sizeof(Key::Face));
|
/third_party/skia/src/gpu/mtl/ |
D | GrMtlDepthStencil.h | 31 struct Face { struct 36 Face fFront; 37 Face fBack;
|
D | GrMtlDepthStencil.mm | 39 MTLStencilDescriptor* skia_stencil_to_mtl(GrStencilSettings::Face face) { 93 void skia_stencil_to_key(GrStencilSettings::Face face, GrMtlDepthStencil::Key::Face* faceKey) { 123 memcpy(&depthStencilKey.fBack, &depthStencilKey.fFront, sizeof(Key::Face));
|
/third_party/glslang/Test/baseResults/ |
D | 140.frag.out | 84 0:48 'gl_FrontFacing' ( gl_FrontFacing bool Face) 145 0:48 'gl_FrontFacing' ( gl_FrontFacing bool Face)
|
D | hlsl.struct.frag.out | 70 0:? 's.ff1' ( flat in bool Face) 99 0:? 's.ff1' ( flat in bool Face) 176 0:? 's.ff1' ( flat in bool Face) 205 0:? 's.ff1' ( flat in bool Face)
|
D | 100.frag.out | 419 0:227 'gl_FrontFacing' ( gl_FrontFacing bool Face) 431 0:233 'gl_FrontFacing' ( gl_FrontFacing bool Face) 573 0:227 'gl_FrontFacing' ( gl_FrontFacing bool Face) 585 0:233 'gl_FrontFacing' ( gl_FrontFacing bool Face)
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_texture.c | 545 unsigned z = slice + texImage->Face; in st_UnmapTextureImage() 1680 zoffset += texImage->Face + texImage->TexObject->Attrib.MinLayer; in try_pbo_upload() 1796 zoffset += texImage->Face + texImage->TexObject->Attrib.MinLayer; in try_pbo_download() 1900 unsigned dstz = texImage->Face + texImage->TexObject->Attrib.MinLayer; in st_TexSubImage() 2311 layer = z + texImage->Face + texImage->TexObject->Attrib.MinLayer; in st_CompressedTexSubImage() 2501 assert(texImage->Face == 0 || in st_GetTexSubImage() 2516 blit.src.box.z = texImage->Face + texImage->TexObject->Attrib.MinLayer + zoffset; in st_GetTexSubImage() 2830 blit.dst.box.z = stImage->Face + slice + in st_CopyTexSubImage() 2862 stObj->Image[stImage->Face][dstLevel]; in copy_image_data_to_texture() 2889 stImage->Face); in copy_image_data_to_texture() [all …]
|
D | st_texture.c | 278 z += stImage->Face; in st_texture_image_map() 312 transfer = &stImage->transfer[slice + stImage->Face].transfer; in st_texture_image_unmap()
|
D | st_cb_copyimage.c | 662 src_z += src_image->Face; in st_CopyImageSubData() 677 dst_z += dst_image->Face; in st_CopyImageSubData()
|
/third_party/skia/samplecode/ |
D | Sample3D.cpp | 104 struct Face { struct 135 const Face faces[] = { argument
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/ |
D | page_selector_demo.dart | 83 const Icon(Icons.face, semanticLabel: 'Face'),
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_fs_exec.c | 122 machine->Face = (float) (quad->input.facing * -2 + 1); in exec_run()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | gen_overlay_fonts.py | 169 face = Face(font_file)
|
/third_party/flutter/skia/src/gpu/dawn/ |
D | GrDawnProgramBuilder.cpp | 211 static dawn::StencilStateFaceDescriptor to_stencil_state_face(const GrStencilSettings::Face& face) { in to_stencil_state_face() 236 const GrStencilSettings::Face& front = stencilSettings.front(origin); in create_depth_stencil_state()
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_exec.h | 335 float Face; /**< +1 if front facing, -1 if back facing */ member
|