Home
last modified time | relevance | path

Searched refs:Face (Results 1 – 25 of 72) sorted by relevance

123

/third_party/skia/src/gpu/
DGrStencilSettings.cpp62 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 …]
DGrStencilSettings.h76 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;
DGrUserStencilSettings.h113 typedef GrTStencilFaceSettings<GrUserStencilTest, GrUserStencilOp> Face; typedef
204 const Face fCWFace;
206 const Face fCCWFace;
/third_party/flutter/skia/src/gpu/
DGrStencilSettings.cpp62 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 …]
DGrStencilSettings.h76 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;
DGrUserStencilSettings.h113 typedef GrTStencilFaceSettings<GrUserStencilTest, GrUserStencilOp> Face; typedef
203 const Face fFront;
205 const Face fBack;
/third_party/flutter/skia/third_party/externals/imgui/misc/freetype/
Dimgui_freetype.cpp108 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/
DCubeActivity.java38 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/
Dimgui_freetype.cpp140 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/
DGrMtlDepthStencil.h30 struct Face { struct
35 Face fFront;
36 Face fBack;
DGrMtlDepthStencil.mm37 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/
DGrMtlDepthStencil.h31 struct Face { struct
36 Face fFront;
37 Face fBack;
DGrMtlDepthStencil.mm39 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/
D140.frag.out84 0:48 'gl_FrontFacing' ( gl_FrontFacing bool Face)
145 0:48 'gl_FrontFacing' ( gl_FrontFacing bool Face)
Dhlsl.struct.frag.out70 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)
D100.frag.out419 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/
Dst_cb_texture.c545 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 …]
Dst_texture.c278 z += stImage->Face; in st_texture_image_map()
312 transfer = &stImage->transfer[slice + stImage->Face].transfer; in st_texture_image_unmap()
Dst_cb_copyimage.c662 src_z += src_image->Face; in st_CopyImageSubData()
677 dst_z += dst_image->Face; in st_CopyImageSubData()
/third_party/skia/samplecode/
DSample3D.cpp104 struct Face { struct
135 const Face faces[] = { argument
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dpage_selector_demo.dart83 const Icon(Icons.face, semanticLabel: 'Face'),
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_fs_exec.c122 machine->Face = (float) (quad->input.facing * -2 + 1); in exec_run()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
Dgen_overlay_fonts.py169 face = Face(font_file)
/third_party/flutter/skia/src/gpu/dawn/
DGrDawnProgramBuilder.cpp211 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/
Dtgsi_exec.h335 float Face; /**< +1 if front facing, -1 if back facing */ member

123