Searched defs:dstLevel (Results 1 - 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
H A Dst_gen_mipmap.c149 uint dstLevel; local
216 for (dstLevel = baseLevel + 1; dstLevel <= lastLevel; dstLevel++) {
217 const uint srcLevel = dstLevel - 1;
225 dstWidth = u_minify(pt->width0, dstLevel);
230 dstHeight = u_minify(pt->height0, dstLevel);
236 dstDepth = u_minify(pt->depth0, dstLevel);
239 dstImage = _mesa_get_tex_image(ctx, texObj, target, dstLevel);
H A Dst_texture.c363 * Copy the image at level=0 in 'src' to the 'dst' resource at 'dstLevel'.
370 struct pipe_resource *dst, GLuint dstLevel,
374 GLuint width = u_minify(dst->width0, dstLevel);
375 GLuint height = u_minify(dst->height0, dstLevel);
376 GLuint depth = u_minify(dst->depth0, dstLevel);
407 dstLevel,
369 st_texture_image_copy(struct pipe_context *pipe, struct pipe_resource *dst, GLuint dstLevel, struct pipe_resource *src, GLuint srcLevel, GLuint face) argument
H A Dst_cb_texture.c1000 unsigned dstLevel; local
1009 dstLevel = MIN2(stImage->base.Level, stImage->pt->last_level);
1015 dstLevel,
1104 * 'dstLevel'.
1109 GLuint dstLevel,
1115 stObj->base.Image[stImage->base.Face][dstLevel];
1139 stObj->pt, dstLevel, /* dest texture, level */
1154 dstLevel,
1107 copy_image_data_to_texture(struct st_context *st, struct st_texture_object *stObj, GLuint dstLevel, struct st_texture_image *stImage) argument
/external/deqp/modules/gles31/functional/
H A Des31fStencilTexturingTests.cpp480 const tcu::PixelBufferAccess dstLevel = dst.getLevelFace(levelNdx, face); local
484 dstLevel.setPixel(Vec4(float(srcLevel.getPixStencil(x, y)) / 255.f, 0.f, 0.f, 1.f), x, y);
H A Des31fCopyImageTests.cpp744 int dstLevel,
755 ArrayBuffer<deUint8>& dstLevelData = dstImageData[dstLevel];
765 const IVec3 dstTexelBlockStride = getTexelBlockStride(dstImageInfo, dstLevel);
843 int dstLevel,
855 dstName, dstImageInfo.getTarget(), dstLevel, dstPos.x(), dstPos.y(), dstPos.z(),
860 copyImageData(dstImageData, dstImageInfo, dstLevel, dstPos,
1804 , dstLevel (dstLevel_)
1812 int dstLevel; member in struct:deqp::gles31::Functional::__anon3562::Copy
1854 const int dstLevel = (dstIsTexture ? (levels[levelNdx] >= 0 ? levels[levelNdx] : getLastFullLevel(dstInfo)) : 0); local
1857 const IVec3 dstSize = getLevelSize(dstInfo.getTarget(), dstInfo.getSize(), dstLevel);
742 copyImageData(vector<ArrayBuffer<deUint8> >& dstImageData, const ImageInfo& dstImageInfo, int dstLevel, const IVec3& dstPos, const vector<ArrayBuffer<deUint8> >& srcImageData, const ImageInfo& srcImageInfo, int srcLevel, const IVec3& srcPos, const IVec3& copySize) argument
838 copyImage(const glw::Functions& gl, deUint32 dstName, vector<ArrayBuffer<deUint8> >& dstImageData, const ImageInfo& dstImageInfo, int dstLevel, const IVec3& dstPos, deUint32 srcName, const vector<ArrayBuffer<deUint8> >& srcImageData, const ImageInfo& srcImageInfo, int srcLevel, const IVec3& srcPos, const IVec3& copySize) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_fbo.c836 const GLuint dstLevel = drawAtt->TextureLevel; local
840 _mesa_select_tex_image(ctx, texObj, target, dstLevel);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_fbo.c836 const GLuint dstLevel = drawAtt->TextureLevel; local
840 _mesa_select_tex_image(ctx, texObj, target, dstLevel);
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_fbo.c836 const GLuint dstLevel = drawAtt->TextureLevel; local
840 _mesa_select_tex_image(ctx, texObj, target, dstLevel);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_gen_mipmap.c1107 uint dstLevel; local
1109 for (dstLevel = baseLevel + 1; dstLevel <= lastLevel; dstLevel++) {
1110 const uint srcLevel = dstLevel - 1;
1118 dstTrans = pipe_get_transfer(pipe, pt, dstLevel, layer,
1120 u_minify(pt->width0, dstLevel),
1121 u_minify(pt->height0, dstLevel));
1145 uint dstLevel; local
1150 for (dstLevel
1189 uint dstLevel; local
1523 uint dstLevel; local
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c3252 GLuint dstLevel; local
3361 for (dstLevel = baseLevel + 1; dstLevel <= maxLevel; dstLevel++) {
3363 const GLuint srcLevel = dstLevel - 1;
3391 _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, dstLevel);
3393 if (!_mesa_prepare_mipmap_level(ctx, texObj, dstLevel,
3407 /* Set to draw into the current dstLevel */
3413 dstLevel);
3421 dstLevel, zoffse
[all...]

Completed in 7960 milliseconds