Home
last modified time | relevance | path

Searched refs:texs (Results 1 – 25 of 47) sorted by relevance

12

/external/skia/samplecode/
Dvertexdump.cpp10 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
12 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { in setup_vertexbug() argument
14 texs[0].set(0, 0); in setup_vertexbug()
16 texs[1].set(9, 0); in setup_vertexbug()
18 texs[2].set(35, 0); in setup_vertexbug()
20 texs[3].set(44, 0); in setup_vertexbug()
22 texs[4].set(0, 9); in setup_vertexbug()
24 texs[5].set(9, 9); in setup_vertexbug()
26 texs[6].set(35, 9); in setup_vertexbug()
28 texs[7].set(44, 9); in setup_vertexbug()
[all …]
/external/skia/src/utils/
DSkNinePatch.cpp74 static void fillRow(SkPoint verts[], SkPoint texs[], in fillRow() argument
80 texs->set(0, ty); texs++; in fillRow()
90 texs->set(tx, ty); texs++; in fillRow()
93 texs->set(SkIntToScalar(width), ty); texs++; in fillRow()
194 SkPoint* texs = verts + vCount; in DrawMesh() local
195 uint16_t* indices = (uint16_t*)(texs + vCount); in DrawMesh()
198 mesh.fTexs = texs; in DrawMesh()
212 fillRow(verts, texs, vy, 0, bounds, xDivs, numXDivs, in DrawMesh()
215 texs += numXDivs + 2; in DrawMesh()
231 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs, in DrawMesh()
[all …]
DSkPaintFilterCanvas.cpp147 const SkPoint vertices[], const SkPoint texs[], in onDrawVertices() argument
153 this->INHERITED::onDrawVertices(vmode, vertexCount, vertices, texs, colors, xmode, indices, in onDrawVertices()
DSkNWayCanvas.cpp275 const SkPoint vertices[], const SkPoint texs[], in onDrawVertices() argument
281 iter->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode, in onDrawVertices()
/external/skia/bench/
DPatchGridBench.cpp126 SkPoint texs[4]; in setGrid() local
127 texs[0] = texCoords[i][j]; in setGrid()
128 texs[1] = texCoords[i][j + 1]; in setGrid()
129 texs[3] = texCoords[i + 1][j]; in setGrid()
130 texs[2] = texCoords[i + 1][j + 1]; in setGrid()
140 fGrid.setPatch(j, i, points, nullptr, texs); in setGrid()
143 fGrid.setPatch(j, i, points, colors, texs); in setGrid()
/external/mesa3d/src/gallium/drivers/rbug/
Drbug_core.c182 rbug_texture_t *texs; in rbug_texture_list() local
186 texs = MALLOC(rb_screen->num_resources * sizeof(rbug_texture_t)); in rbug_texture_list()
189 texs[i++] = VOID2U64(tr_tex); in rbug_texture_list()
193 rbug_send_texture_list_reply(tr_rbug->con, serial, texs, i, NULL); in rbug_texture_list()
194 FREE(texs); in rbug_texture_list()
326 rbug_texture_t texs[PIPE_MAX_SAMPLERS]; in rbug_context_info() local
346 texs[i] = VOID2U64(rb_context->curr.texs[PIPE_SHADER_FRAGMENT][i]); in rbug_context_info()
350 texs, rb_context->curr.num_views[PIPE_SHADER_FRAGMENT], in rbug_context_info()
Drbug_context.h52 struct rbug_resource *texs[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS]; member
Drbug_context.c90 if (rb_pipe->draw_rule.texture == rb_pipe->curr.texs[sh][k]) { in rbug_draw_block_locked()
741 memset(rb_pipe->curr.texs[shader], 0, sizeof(rb_pipe->curr.texs[shader])); in rbug_set_sampler_views()
748 rb_pipe->curr.texs[shader][i] = rbug_resource(_views[i] ? _views[i]->texture : NULL); in rbug_set_sampler_views()
/external/mesa3d/src/gallium/auxiliary/rbug/
Drbug_context.h115 rbug_texture_t *texs; member
176 rbug_texture_t *texs,
Drbug_context.c373 rbug_texture_t *texs, in rbug_send_context_info_reply() argument
391 LEN_ARRAY(8, texs); /* texs */ in rbug_send_context_info_reply()
409 WRITE_ARRAY(8, rbug_texture_t, texs); /* texs */ in rbug_send_context_info_reply()
713 READ_ARRAY(8, rbug_texture_t, texs); /* texs */ in rbug_demarshal_context_info_reply()
/external/skia/src/core/
DSkRecorder.cpp299 const SkPoint texs[], const SkColor colors[], in onDrawVertices() argument
306 texs ? this->copy(texs, vertexCount) : nullptr, in onDrawVertices()
DSkPicturePlayback.cpp439 const SkPoint* texs = nullptr; in handleOp() local
444 texs = (const SkPoint*)reader->skip(vCount * sizeof(SkPoint)); in handleOp()
460 canvas->drawVertices(vmode, vCount, verts, texs, colors, xfer, indices, iCount, paint); in handleOp()
DSkRecorder.h110 const SkPoint vertices[], const SkPoint texs[],
/external/skia/src/svg/
DSkSVGDevice.h50 const SkPoint verts[], const SkPoint texs[],
/external/skia/include/utils/
DSkPaintFilterCanvas.h81 const SkPoint vertices[], const SkPoint texs[],
DSkLuaCanvas.h58 const SkPoint vertices[], const SkPoint texs[],
DSkNWayCanvas.h71 const SkPoint vertices[], const SkPoint texs[],
DSkDumpCanvas.h112 const SkPoint vertices[], const SkPoint texs[],
/external/skia/include/private/
DSkRecords.h346 PODArray<SkRect> texs;
356 PODArray<SkPoint> texs;
/external/skia/tools/android/
DSkAndroidSDKCanvas.cpp162 const SkPoint texs[], const SkColor colors[], SkXfermode* xMode, in onDrawVertices() argument
166 fProxyTarget->drawVertices(vMode, vertexCount, vertices, texs, colors, in onDrawVertices()
DSkAndroidSDKCanvas.h50 const SkPoint texs[], const SkColor colors[], SkXfermode* xMode,
/external/skia/include/core/
DSkBitmapDevice.h118 const SkPoint verts[], const SkPoint texs[],
/external/skia/include/gpu/
DGrDrawContext.h181 const SkPoint texs[],
/external/skia/src/gpu/
DSkGpuDevice.cpp1606 const SkPoint texs[], const SkColor colors[], in drawVertices() argument
1615 if ((nullptr == texs || nullptr == paint.getShader()) && nullptr == colors) { in drawVertices()
1617 texs = nullptr; in drawVertices()
1664 texs, in drawVertices()
1684 if (texs && paint.getShader()) { in drawVertices()
1727 texs, in drawVertices()
/external/skia/tools/debugger/
DSkDebugCanvas.h209 const SkPoint vertices[], const SkPoint texs[],

12