/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_gen_mipmap.c | 65 uint dstLevel; in util_gen_mipmap() local 103 for (dstLevel = base_level + 1; dstLevel <= last_level; dstLevel++) { in util_gen_mipmap() 104 blit.src.level = dstLevel - 1; in util_gen_mipmap() 105 blit.dst.level = dstLevel; in util_gen_mipmap()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | copyimage.c | 546 int dstX, int dstY, int dstZ, int dstLevel, in copy_image_subdata() 567 dstTexImage = dstTexImage->TexObject->Image[dstZ + i][dstLevel]; in copy_image_subdata() 584 GLuint dstName, GLenum dstTarget, GLint dstLevel, in _mesa_CopyImageSubData_no_error() 596 prepare_target(ctx, dstName, dstTarget, dstLevel, dstZ, &dstTexImage, in _mesa_CopyImageSubData_no_error() 601 dstLevel, srcWidth, srcHeight, srcDepth); in _mesa_CopyImageSubData_no_error() 607 GLuint dstName, GLenum dstTarget, GLint dstLevel, in _mesa_CopyImageSubData() 627 dstName, _mesa_enum_to_string(dstTarget), dstLevel, in _mesa_CopyImageSubData() 643 if (!prepare_target_err(ctx, dstName, dstTarget, dstLevel, dstZ, srcDepth, in _mesa_CopyImageSubData() 737 dstLevel, srcWidth, srcHeight, srcDepth); in _mesa_CopyImageSubData() 743 GLuint dstName, GLenum dstTarget, GLint dstLevel, in _mesa_CopyImageSubDataNV_no_error() 540 copy_image_subdata(struct gl_context *ctx, struct gl_texture_image *srcTexImage, struct gl_renderbuffer *srcRenderbuffer, int srcX, int srcY, int srcZ, int srcLevel, struct gl_texture_image *dstTexImage, struct gl_renderbuffer *dstRenderbuffer, int dstX, int dstY, int dstZ, int dstLevel, int srcWidth, int srcHeight, int srcDepth) copy_image_subdata() argument 582 _mesa_CopyImageSubData_no_error(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) _mesa_CopyImageSubData_no_error() argument 605 _mesa_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) _mesa_CopyImageSubData() argument 741 _mesa_CopyImageSubDataNV_no_error(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) _mesa_CopyImageSubDataNV_no_error() argument 764 _mesa_CopyImageSubDataNV(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) _mesa_CopyImageSubDataNV() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | RenderbufferImpl.h | 58 GLint dstLevel, 72 GLint dstLevel, 103 GLint dstLevel, in copyRenderbufferSubData() 121 GLint dstLevel, in copyTextureSubData() 97 copyRenderbufferSubData(const gl::Context *context, const gl::Renderbuffer *srcBuffer, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyRenderbufferSubData() argument 115 copyTextureSubData(const gl::Context *context, const gl::Texture *srcTexture, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyTextureSubData() argument
|
H A D | TextureImpl.cpp | 53 GLint dstLevel, in copyRenderbufferSubData() 71 GLint dstLevel, in copyTextureSubData() 47 copyRenderbufferSubData(const gl::Context *context, const gl::Renderbuffer *srcBuffer, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyRenderbufferSubData() argument 65 copyTextureSubData(const gl::Context *context, const gl::Texture *srcTexture, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyTextureSubData() argument
|
H A D | TextureImpl.h | 118 GLint dstLevel, 132 GLint dstLevel,
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_texture.c | 347 * Copy the image at level=0 in 'src' to the 'dst' resource at 'dstLevel'. 354 struct pipe_resource *dst, GLuint dstLevel, in st_texture_image_copy() 358 GLuint width = u_minify(dst->width0, dstLevel); in st_texture_image_copy() 359 GLuint height = u_minify(dst->height0, dstLevel); in st_texture_image_copy() 360 GLuint depth = u_minify(dst->depth0, dstLevel); in st_texture_image_copy() 399 dstLevel, in st_texture_image_copy() 353 st_texture_image_copy(struct pipe_context *pipe, struct pipe_resource *dst, GLuint dstLevel, struct pipe_resource *src, GLuint srcLevel, GLuint face) st_texture_image_copy() argument
|
H A D | st_texture.h | 206 struct pipe_resource *dst, GLuint dstLevel,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | RenderbufferVk.h | 46 GLint dstLevel, 60 GLint dstLevel,
|
H A D | RenderbufferVk.cpp | 200 GLint dstLevel, in copyRenderbufferSubData() 215 srcZ, mImage, dstLevel, dstX, dstY, dstZ, srcWidth, in copyRenderbufferSubData() 225 GLint dstLevel, in copyTextureSubData() 241 srcZ, mImage, dstLevel, dstX, dstY, dstZ, srcWidth, in copyTextureSubData() 194 copyRenderbufferSubData(const gl::Context *context, const gl::Renderbuffer *srcBuffer, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyRenderbufferSubData() argument 219 copyTextureSubData(const gl::Context *context, const gl::Texture *srcTexture, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyTextureSubData() argument
|
H A D | TextureVk.h | 109 GLint dstLevel, 123 GLint dstLevel,
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_surface.c | 810 unsigned dstLevel = surf->u.tex.level; in svga_propagate_surface() local 811 unsigned width = u_minify(tex->b.width0, dstLevel); in svga_propagate_surface() 812 unsigned height = u_minify(tex->b.height0, dstLevel); in svga_propagate_surface() 839 dstSubResource = (layer + i) * numMipLevels + dstLevel; in svga_propagate_surface() 845 svga_define_texture_level(tex, layer + i, dstLevel); in svga_propagate_surface() 853 tex->handle, 0, 0, zslice, dstLevel, in svga_propagate_surface() 857 svga_define_texture_level(tex, layer + i, dstLevel); in svga_propagate_surface()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Renderbuffer.h | 101 GLint dstLevel, 115 GLint dstLevel,
|
H A D | Renderbuffer.cpp | 201 GLint dstLevel, in copyRenderbufferSubData() 210 srcZ, dstLevel, dstX, dstY, dstZ, srcWidth, in copyRenderbufferSubData() 222 GLint dstLevel, in copyTextureSubData() 231 dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, in copyTextureSubData() 195 copyRenderbufferSubData(Context *context, const gl::Renderbuffer *srcBuffer, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyRenderbufferSubData() argument 216 copyTextureSubData(Context *context, const gl::Texture *srcTexture, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyTextureSubData() argument
|
H A D | validationES32.cpp | 146 GLint dstLevel, in ValidateCopyImageSubData() 161 srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, in ValidateCopyImageSubData() 136 ValidateCopyImageSubData(const Context *context, angle::EntryPoint entryPoint, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) ValidateCopyImageSubData() argument
|
H A D | Context_gles_3_2_autogen.h | 23 GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, \
|
H A D | Texture.h | 425 GLint dstLevel, 439 GLint dstLevel,
|
H A D | validationES32_autogen.h | 60 GLint dstLevel,
|
H A D | validationESEXT.cpp | 876 GLint dstLevel, in ValidateCopyImageSubDataEXT() 891 srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, in ValidateCopyImageSubDataEXT() 905 GLint dstLevel, in ValidateCopyImageSubDataOES() 920 srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, in ValidateCopyImageSubDataOES() 866 ValidateCopyImageSubDataEXT(const Context *context, angle::EntryPoint entryPoint, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) ValidateCopyImageSubDataEXT() argument 895 ValidateCopyImageSubDataOES(const Context *context, angle::EntryPoint entryPoint, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) ValidateCopyImageSubDataOES() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
H A D | TextureNULL.h | 93 GLint dstLevel, 107 GLint dstLevel,
|
H A D | TextureNULL.cpp | 120 GLint dstLevel, in copyRenderbufferSubData() 137 GLint dstLevel, in copyTextureSubData() 114 copyRenderbufferSubData(const gl::Context *context, const gl::Renderbuffer *srcBuffer, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyRenderbufferSubData() argument 131 copyTextureSubData(const gl::Context *context, const gl::Texture *srcTexture, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) copyTextureSubData() argument
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | CopyTextureForBrowserTests.cpp | 50 uint32_t dstLevel, in TestCopyTextureForBrowser() 57 utils::CreateImageCopyTexture(dstTexture, dstLevel, dstOrigin, aspect); in TestCopyTextureForBrowser() 45 TestCopyTextureForBrowser(utils::Expectation expectation, wgpu::Texture srcTexture, uint32_t srcLevel, wgpu::Origin3D srcOrigin, wgpu::Texture dstTexture, uint32_t dstLevel, wgpu::Origin3D dstOrigin, wgpu::Extent3D extent3D, wgpu::TextureAspect aspect = wgpu::TextureAspect::All) TestCopyTextureForBrowser() argument
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fCopyImageTests.cpp | 1006 int dstLevel, 1017 ArrayBuffer<deUint8>& dstLevelData = dstImageData[dstLevel]; 1027 const IVec3 dstTexelBlockStride = getTexelBlockStride(dstImageInfo, dstLevel); 1105 int dstLevel, 1117 dstName, dstImageInfo.getTarget(), dstLevel, dstPos.x(), dstPos.y(), dstPos.z(), 1122 copyImageData(dstImageData, dstImageInfo, dstLevel, dstPos, 2081 , dstLevel (dstLevel_) 2091 int dstLevel; 2134 const int dstLevel = (dstIsTexture ? (levels[levelNdx] >= 0 ? levels[levelNdx] : getLastFullLevel(dstInfo)) : 0); 2137 const IVec3 dstSize = getLevelSize(dstInfo.getTarget(), dstInfo.getSize(), dstLevel); [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
H A D | mtl_command_buffer.h | 557 MipmapNativeLevel dstLevel, 577 MipmapNativeLevel dstLevel,
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_3_2_autogen.cpp | 186 GLint dstLevel, in GL_CopyImageSubData() 197 "%d, dstName = %u, dstTarget = %s, dstLevel = %d, dstX = %d, dstY = %d, dstZ = %d, " in GL_CopyImageSubData() 201 GLenumToString(GLenumGroup::CopyBufferSubDataTarget, dstTarget), dstLevel, dstX, dstY, in GL_CopyImageSubData() 211 dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth)); in GL_CopyImageSubData() 215 dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, in GL_CopyImageSubData() 219 srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, in GL_CopyImageSubData() 178 GL_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) GL_CopyImageSubData() argument
|
H A D | entry_points_gles_3_2_autogen.h | 36 GLint dstLevel,
|