/external/skia/samplecode/ |
D | vertexdump.cpp | 10 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/ |
D | SkNinePatch.cpp | 74 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 …]
|
D | SkPaintFilterCanvas.cpp | 147 const SkPoint vertices[], const SkPoint texs[], in onDrawVertices() argument 153 this->INHERITED::onDrawVertices(vmode, vertexCount, vertices, texs, colors, xmode, indices, in onDrawVertices()
|
D | SkNWayCanvas.cpp | 275 const SkPoint vertices[], const SkPoint texs[], in onDrawVertices() argument 281 iter->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode, in onDrawVertices()
|
/external/skia/bench/ |
D | PatchGridBench.cpp | 126 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/ |
D | rbug_core.c | 182 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()
|
D | rbug_context.h | 52 struct rbug_resource *texs[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS]; member
|
D | rbug_context.c | 90 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/ |
D | rbug_context.h | 115 rbug_texture_t *texs; member 176 rbug_texture_t *texs,
|
D | rbug_context.c | 373 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/ |
D | SkRecorder.cpp | 299 const SkPoint texs[], const SkColor colors[], in onDrawVertices() argument 306 texs ? this->copy(texs, vertexCount) : nullptr, in onDrawVertices()
|
D | SkPicturePlayback.cpp | 439 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()
|
D | SkRecorder.h | 110 const SkPoint vertices[], const SkPoint texs[],
|
/external/skia/src/svg/ |
D | SkSVGDevice.h | 50 const SkPoint verts[], const SkPoint texs[],
|
/external/skia/include/utils/ |
D | SkPaintFilterCanvas.h | 81 const SkPoint vertices[], const SkPoint texs[],
|
D | SkLuaCanvas.h | 58 const SkPoint vertices[], const SkPoint texs[],
|
D | SkNWayCanvas.h | 71 const SkPoint vertices[], const SkPoint texs[],
|
D | SkDumpCanvas.h | 112 const SkPoint vertices[], const SkPoint texs[],
|
/external/skia/include/private/ |
D | SkRecords.h | 346 PODArray<SkRect> texs; 356 PODArray<SkPoint> texs;
|
/external/skia/tools/android/ |
D | SkAndroidSDKCanvas.cpp | 162 const SkPoint texs[], const SkColor colors[], SkXfermode* xMode, in onDrawVertices() argument 166 fProxyTarget->drawVertices(vMode, vertexCount, vertices, texs, colors, in onDrawVertices()
|
D | SkAndroidSDKCanvas.h | 50 const SkPoint texs[], const SkColor colors[], SkXfermode* xMode,
|
/external/skia/include/core/ |
D | SkBitmapDevice.h | 118 const SkPoint verts[], const SkPoint texs[],
|
/external/skia/include/gpu/ |
D | GrDrawContext.h | 181 const SkPoint texs[],
|
/external/skia/src/gpu/ |
D | SkGpuDevice.cpp | 1606 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/ |
D | SkDebugCanvas.h | 209 const SkPoint vertices[], const SkPoint texs[],
|