/external/mesa3d/src/mesa/main/ |
D | texstore.c | 103 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 …]
|
D | copyimage.c | 540 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 …]
|
D | mipmap.h | 36 GLint srcWidth, GLint srcHeight, GLint srcDepth, 54 GLint srcWidth, GLint srcHeight, GLint srcDepth,
|
D | copyimage.h | 43 GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); 50 GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
|
D | pack.h | 101 int srcWidth, int srcHeight, int srcDepth, 108 int srcWidth, int srcHeight, int srcDepth,
|
D | texstore.h | 63 GLint srcWidth, GLint srcHeight, GLint srcDepth, \ 83 GLint srcWidth, GLint srcHeight, GLint srcDepth,
|
D | texcompress_s3tc.c | 74 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()
|
D | texcompress_rgtc.c | 100 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()
|
D | mipmap.c | 1539 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 …]
|
D | pack.c | 1551 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()
|
D | texcompress_bptc.c | 1298 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()
|
D | texcompress_fxt1.c | 81 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgb_fxt1() 136 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_fxt1()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta_generate_mipmap.c | 276 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/ |
D | es3fVertexTextureTests.cpp | 1633 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/ |
D | gl2ext.h | 278 …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/ |
D | gl2ext.h | 288 …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/ |
D | gl32.h | 1734 …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/ |
D | tcuNullRenderContextFuncs.inl | 981 …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/ |
D | gluCallLogWrapper.inl | 726 …: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);
|
D | gluCallLogWrapperApi.inl | 107 …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/ |
D | glwImpl.inl | 815 …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);
|
D | glwFunctionTypes.inl | 107 …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);
|
D | glwApi.inl | 1013 …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/ |
D | marshal_generated.c | 32558 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/ |
D | glext.h | 2469 …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);
|