Home
last modified time | relevance | path

Searched refs:srcDepth (Results 1 – 25 of 28) sorted by relevance

12

/external/mesa3d/src/mesa/main/
Dtexstore.c103 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_memcpy_texture() argument
121 for (img = 0; img < srcDepth; img++) { in _mesa_memcpy_texture()
130 for (img = 0; img < srcDepth; img++) { in _mesa_memcpy_texture()
165 for (img = 0; img < srcDepth; img++) { in _mesa_texstore_z32()
195 for (img = 0; img < srcDepth; img++) { in _mesa_texstore_x8_z24()
225 for (img = 0; img < srcDepth; img++) { in _mesa_texstore_z24_x8()
259 for (img = 0; img < srcDepth; img++) { in _mesa_texstore_z16()
299 srcWidth, srcHeight, srcDepth, srcFormat, srcType, in _mesa_texstore_ycbcr()
309 for (img = 0; img < srcDepth; img++) { in _mesa_texstore_ycbcr()
349 for (img = 0; img < srcDepth; img++) { in _mesa_texstore_z24_s8()
[all …]
Dcopyimage.c540 int srcWidth, int srcHeight, int srcDepth) in copy_image_subdata() argument
543 for (int i = 0; i < srcDepth; ++i) { in copy_image_subdata()
579 GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) in _mesa_CopyImageSubData_no_error() argument
594 dstLevel, srcWidth, srcHeight, srcDepth); in _mesa_CopyImageSubData_no_error()
602 GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) in _mesa_CopyImageSubData() argument
622 srcWidth, srcHeight, srcDepth); in _mesa_CopyImageSubData()
630 if (!prepare_target_err(ctx, srcName, srcTarget, srcLevel, srcZ, srcDepth, in _mesa_CopyImageSubData()
636 if (!prepare_target_err(ctx, dstName, dstTarget, dstLevel, dstZ, srcDepth, in _mesa_CopyImageSubData()
697 dstDepth = srcDepth; in _mesa_CopyImageSubData()
700 srcX, srcY, srcZ, srcWidth, srcHeight, srcDepth, in _mesa_CopyImageSubData()
[all …]
Dmipmap.h36 GLint srcWidth, GLint srcHeight, GLint srcDepth,
54 GLint srcWidth, GLint srcHeight, GLint srcDepth,
Dcopyimage.h43 GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
50 GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
Dpack.h101 int srcWidth, int srcHeight, int srcDepth,
108 int srcWidth, int srcHeight, int srcDepth,
Dtexstore.h63 GLint srcWidth, GLint srcHeight, GLint srcDepth, \
83 GLint srcWidth, GLint srcHeight, GLint srcDepth,
Dtexcompress_s3tc.c74 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgb_dxt1()
127 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_dxt1()
180 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_dxt3()
232 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_dxt5()
Dtexcompress_rgtc.c100 srcWidth, srcHeight, srcDepth, in _mesa_texstore_red_rgtc1()
153 srcWidth, srcHeight, srcDepth, in _mesa_texstore_signed_red_rgtc1()
214 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rg_rgtc2()
279 srcWidth, srcHeight, srcDepth, in _mesa_texstore_signed_rg_rgtc2()
Dmipmap.c1539 GLint srcWidth, GLint srcHeight, GLint srcDepth, in make_3d_mipmap() argument
1546 const GLint srcDepthNB = srcDepth - 2 * border; in make_3d_mipmap()
1560 srcImageOffset = (srcDepth == dstDepth) ? 0 : 1; in make_3d_mipmap()
1621 srcWidth, srcHeight, srcPtr[srcDepth - 1], srcRowStride, in make_3d_mipmap()
1625 if (srcDepth == dstDepth) { in make_3d_mipmap()
1702 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_generate_mipmap_level() argument
1730 srcWidth, srcHeight, srcDepth, in _mesa_generate_mipmap_level()
1768 GLint srcWidth, GLint srcHeight, GLint srcDepth, in _mesa_next_mipmap_level_size() argument
1787 if ((srcDepth - 2 * border > 1) && in _mesa_next_mipmap_level_size()
1792 *dstDepth = (srcDepth - 2 * border) / 2 + 2 * border; in _mesa_next_mipmap_level_size()
[all …]
Dpack.c1551 int srcWidth, int srcHeight, int srcDepth, in _mesa_unpack_color_index_to_rgba_float() argument
1566 rgba = malloc(4 * count * srcDepth * sizeof(GLfloat)); in _mesa_unpack_color_index_to_rgba_float()
1575 for (img = 0; img < srcDepth; img++) { in _mesa_unpack_color_index_to_rgba_float()
1606 int srcWidth, int srcHeight, int srcDepth, in _mesa_unpack_color_index_to_rgba_ubyte() argument
1617 srcWidth, srcHeight, srcDepth, in _mesa_unpack_color_index_to_rgba_ubyte()
1620 count = srcWidth * srcHeight * srcDepth; in _mesa_unpack_color_index_to_rgba_ubyte()
Dtexcompress_bptc.c1298 srcWidth, srcHeight, srcDepth, in _mesa_texstore_bptc_rgba_unorm()
1609 srcWidth, srcHeight, srcDepth, in texstore_bptc_rgb_float()
1639 srcWidth, srcHeight, srcDepth, in _mesa_texstore_bptc_rgb_signed_float()
1652 srcWidth, srcHeight, srcDepth, in _mesa_texstore_bptc_rgb_unsigned_float()
Dtexcompress_fxt1.c81 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgb_fxt1()
136 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_fxt1()
/external/mesa3d/src/mesa/drivers/common/
Dmeta_generate_mipmap.c276 GLsizei srcWidth, srcHeight, srcDepth; in _mesa_meta_GenerateMipmap() local
286 srcDepth = srcImage->Height; in _mesa_meta_GenerateMipmap()
289 srcDepth = srcImage->Depth; in _mesa_meta_GenerateMipmap()
295 dstDepth = target == GL_TEXTURE_3D ? minify(srcDepth, 1) : srcDepth; in _mesa_meta_GenerateMipmap()
299 dstDepth == srcDepth) { in _mesa_meta_GenerateMipmap()
332 srcWidth, srcHeight, srcDepth, in _mesa_meta_GenerateMipmap()
/external/deqp/modules/gles3/functional/
Des3fVertexTextureTests.cpp1633 const int srcDepth = refTexture.getDepth(); in calculateLod() local
1645 const float dwdx = (trans10.z() - trans00.z()) * (float)srcDepth / dstSize.x(); in calculateLod()
1646 const float dwdy = (trans01.z() - trans00.z()) * (float)srcDepth / dstSize.y(); in calculateLod()
/external/mesa3d/include/GLES2/
Dgl2ext.h278 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
280 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
1164 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
1166 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
/external/swiftshader/include/GLES2/
Dgl2ext.h288 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
290 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
1198 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
1200 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
/external/mesa3d/include/GLES3/
Dgl32.h1734 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
1779 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
/external/deqp/framework/platform/null/
DtcuNullRenderContextFuncs.inl981 …stLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) argument
997 DE_UNREF(srcDepth);
4280 …stLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) argument
4298 DE_UNREF(srcDepth);
/external/deqp/framework/opengl/
DgluCallLogWrapper.inl726 …:GLint dstY, glw::GLint dstZ, glw::GLsizei srcWidth, glw::GLsizei srcHeight, glw::GLsizei srcDepth) argument
729 …stY << ", " << dstZ << ", " << srcWidth << ", " << srcHeight << ", " << srcDepth << ");" << TestLo…
730 …, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth);
3728 …:GLint dstY, glw::GLint dstZ, glw::GLsizei srcWidth, glw::GLsizei srcHeight, glw::GLsizei srcDepth) argument
3731 …stY << ", " << dstZ << ", " << srcWidth << ", " << srcHeight << ", " << srcDepth << ");" << TestLo…
3732 …, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth);
DgluCallLogWrapperApi.inl107 …GLint dstY, glw::GLint dstZ, glw::GLsizei srcWidth, glw::GLsizei srcHeight, glw::GLsizei srcDepth);
504 …GLint dstY, glw::GLint dstZ, glw::GLsizei srcWidth, glw::GLsizei srcHeight, glw::GLsizei srcDepth);
/external/deqp/framework/opengl/wrapper/
DglwImpl.inl815 …stLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) argument
820 …, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth);
3991 …stLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) argument
3996 …, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth);
DglwFunctionTypes.inl107 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
504 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
DglwApi.inl1013 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
1410 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
/external/mesa3d/prebuilt-intermediates/main/
Dmarshal_generated.c32558 GLsizei srcDepth; member
32577 const GLsizei srcDepth = cmd->srcDepth; in _mesa_unmarshal_CopyImageSubData() local
32578 … srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth)); in _mesa_unmarshal_CopyImageSubData()
32581 …stLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) in _mesa_marshal_CopyImageSubData() argument
32603 cmd->srcDepth = srcDepth; in _mesa_marshal_CopyImageSubData()
32610 … srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth)); in _mesa_marshal_CopyImageSubData()
/external/swiftshader/include/GL/
Dglext.h2469 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
2513 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
9949 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
9962 …tLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);

12