HomeSort by relevance Sort by last modified time
    Searched refs:texels (Results 1 - 25 of 227) sorted by null

1 2 3 4 5 6 7 8 910

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mpeg12_decoder.h 101 short *texels; member in struct:vl_mpeg12_buffer
  /external/skia/src/gpu/
GrGpu.cpp 89 * @param texels The texel data for the mipmap levels
90 * @param mipLevelCount The number of GrMipLevels in 'texels'
94 const GrMipLevel texels[], int mipLevelCount) {
126 if (!texels[i].fPixels) {
134 const GrMipLevel texels[], int mipLevelCount) {
141 texels, mipLevelCount);
157 sk_sp<GrTexture> tex = this->onCreateTexture(desc, budgeted, texels, mipLevelCount);
164 if (texels[0].fPixels) {
352 GrPixelConfig config, const GrMipLevel texels[], int mipLevelCount) {
362 // We require that if the texels are mipped, than the write region is the entire surfac
    [all...]
GrSurfaceProxy.cpp 218 const GrMipLevel texels[],
222 if (texels) {
227 if (!texels) {
230 return resourceProvider->createTextureProxy(desc, budgeted, texels[0]);
234 if (!texels[i].fPixels) {
240 texels, mipLevelCount, mipColorMode));
SkGr.cpp 192 std::unique_ptr<GrMipLevel[]> texels(new GrMipLevel[mipLevelCount]);
194 texels[0].fPixels = pixmap.addr();
195 texels[0].fRowBytes = pixmap.rowBytes();
200 texels[i].fPixels = generatedMipLevel.fPixmap.addr();
201 texels[i].fRowBytes = generatedMipLevel.fPixmap.rowBytes();
207 texels.get(),
213 const GrMipLevel texels[],
222 SkBudgeted::kYes, texels,
GrGpu.h 102 * @param texels array of mipmap levels containing texel data to load.
104 * It contains width*height texels. If there is only one
107 * @param mipLevelCount the number of levels in 'texels'
111 const GrMipLevel texels[], int mipLevelCount);
269 * @param texels array of mipmap levels containing texture data
270 * @param mipLevelCount number of levels in 'texels'
275 const GrMipLevel texels[], int mipLevelCount);
544 const GrMipLevel texels[],
590 const GrMipLevel texels[], int mipLevelCount) = 0;
GrResourceProvider.h 71 const GrMipLevel texels[], int mipLevelCount,
GrResourceProvider.cpp 77 const GrMipLevel texels[], int mipLevelCount,
91 sk_sp<GrTexture> tex(fGpu->createTexture(desc, budgeted, texels, mipLevelCount));
SkGr.h 231 const GrMipLevel texels[],
  /frameworks/native/opengl/tests/finish/
finish.cpp 81 char* texels = (char*)malloc(512*512*2);
82 memset(texels,0xFF,512*512*2);
85 512, 512, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, texels);
92 memcpy(dst, texels, 320*480*2);
99 free(texels);
  /external/skia/src/gpu/mock/
GrMockGpu.h 70 const GrMipLevel texels[], int mipLevelCount) override;
107 const GrMipLevel texels[], int mipLevelCount) override {
GrMockGpu.cpp 55 const GrMipLevel texels[], int mipLevelCount) {
  /external/skia/src/gpu/mtl/
GrMtlGpu.h 71 const GrMipLevel texels[], int mipLevelCount) override {
111 const GrMipLevel texels[], int mipLevelCount) override {
  /external/skia/tests/
GrSurfaceTest.cpp 110 std::unique_ptr<GrMipLevel[]> texels(new GrMipLevel[levelCount]);
124 texels[i].fPixels = pixelData.get();
125 texels[i].fRowBytes = rowBytes >> i;
129 texels.get(),
ResourceCacheTest.cpp     [all...]
  /external/mesa3d/src/mesa/swrast/
s_texcombine.c 47 * Return array of texels for given unit.
553 * Apply X/Y/Z/W/0/1 swizzle to an array of colors/texels.
557 swizzle_texels(GLuint swizzle, GLuint count, float4_array texels)
570 vector[SWIZZLE_X] = texels[i][0];
571 vector[SWIZZLE_Y] = texels[i][1];
572 vector[SWIZZLE_Z] = texels[i][2];
573 vector[SWIZZLE_W] = texels[i][3];
574 texels[i][RCOMP] = vector[swzR];
575 texels[i][GCOMP] = vector[swzG];
576 texels[i][BCOMP] = vector[swzB]
658 float4_array texels = get_texel_array(swrast, unit); local
    [all...]
  /external/skia/src/gpu/vk/
GrVkGpu.h 177 const GrMipLevel texels[], int mipLevelCount) override;
204 GrPixelConfig config, const GrMipLevel texels[], int mipLevelCount) override;
249 const GrMipLevel texels[], int mipLevelCount);
GrVkGpu.cpp 378 const GrMipLevel texels[], int mipLevelCount) {
385 if (!mipLevelCount || !texels[0].fPixels) {
411 texels[0].fPixels, texels[0].fRowBytes);
420 texels, mipLevelCount);
625 const GrMipLevel texels[], int mipLevelCount) {
642 // texels is const.
644 // Because of this we need to make a non-const shallow copy of texels.
649 memcpy(texelsShallowCopy.get(), texels, mipLevelCount*sizeof(GrMipLevel));
755 const GrMipLevel texels[], int mipLevelCount)
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
fetch_jit.cpp 85 void ConvertFormat(SWR_FORMAT format, Value *texels[4]);
631 void FetchJit::ConvertFormat(SWR_FORMAT format, Value *texels[4])
656 texels[compIndex] = BITCAST(texels[compIndex], mSimdInt32Ty);
657 texels[compIndex] = SI_TO_FP(texels[compIndex], mSimdFP32Ty);
658 texels[compIndex] = FMUL(texels[compIndex], vScale);
672 texels[compIndex] = BITCAST(texels[compIndex], mSimdInt32Ty)
    [all...]
  /external/skia/src/gpu/gl/
GrGLGpu.h 188 const GrMipLevel texels[],
215 // The texture is populated with |texels|, if it exists.
219 const GrMipLevel texels[], int mipLevelCount);
249 const GrMipLevel texels[], int mipLevelCount) override;
383 const GrMipLevel texels[], int mipLevelCount);
GrGLGpu.cpp 775 const GrMipLevel texels[],
788 left, top, width, height, config, texels, mipLevelCount);
    [all...]
  /external/skia/src/image/
SkImage_Gpu.cpp     [all...]
SkImage.cpp 332 sk_sp<SkImage> MakeTextureFromMipMap(GrContext*, const SkImageInfo&, const GrMipLevel texels[],
393 sk_sp<SkImage> MakeTextureFromMipMap(GrContext*, const SkImageInfo&, const GrMipLevel texels[],
  /external/skia/include/core/
SkImage.h 536 const GrMipLevel texels[], int mipLevelCount,
  /external/skia/include/private/
GrSurfaceProxy.h 188 * @param texels A contiguous array of mipmap levels
189 * @param mipLevelCount The amount of elements in the texels array
193 const GrMipLevel texels[], int mipLevelCount,
  /system/core/libpixelflinger/
scanline.cpp 779 pixel_t texels[4]; local
781 tx.surface.read(&tx.surface, c, u0, v0, &texels[0]);
782 tx.surface.read(&tx.surface, c, u0, v1, &texels[1]);
783 tx.surface.read(&tx.surface, c, u1, v0, &texels[2]);
784 tx.surface.read(&tx.surface, c, u1, v1, &texels[3]);
794 texel.s[j] = texels[0].s[j];
797 texel.c[j] = texels[0].c[j]*mm[0] +
798 texels[1].c[j]*mm[1] +
799 texels[2].c[j]*mm[2] +
800 texels[3].c[j]*mm[3]
    [all...]

Completed in 709 milliseconds

1 2 3 4 5 6 7 8 910