HomeSort by relevance Sort by last modified time
    Searched full:srcdepth (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/opencv3/modules/cudev/include/opencv2/cudev/functional/
color_cvt.hpp 60 template <typename SrcDepth> struct name ## _func : cv::cudev::color_cvt_detail::RGB2RGB<SrcDepth, scn, dcn, bidx> \
76 template <typename SrcDepth> struct name ## _func : cv::cudev::color_cvt_detail::RGB2Gray<SrcDepth, scn, bidx> \
90 template <typename SrcDepth> struct name ## _func : cv::cudev::color_cvt_detail::Gray2RGB<SrcDepth, dcn> \
102 template <typename SrcDepth> struct name ## _func : cv::cudev::color_cvt_detail::RGB2YUV<SrcDepth, scn, dcn, bidx> \
120 template <typename SrcDepth> struct name ## _func : cv::cudev::color_cvt_detail::YUV2RGB<SrcDepth, scn, dcn, bidx>
    [all...]
  /external/opencv3/modules/core/perf/
perf_merge.cpp 22 int srcDepth = get<1>(GetParam());
28 mv.push_back( Mat(sz, CV_MAKETYPE(srcDepth, 1)) );
  /external/mesa3d/src/mesa/main/
texstore.c 311 * \param srcDepth source image depth
322 GLint srcWidth, GLint srcHeight, GLint srcDepth,
357 tempImage = (GLfloat *) malloc(srcWidth * srcHeight * srcDepth
363 for (img = 0; img < srcDepth; img++) {
395 newImage = (GLfloat *) malloc(srcWidth * srcHeight * srcDepth
404 n = srcWidth * srcHeight * srcDepth;
434 GLint srcWidth, GLint srcHeight, GLint srcDepth,
466 tempImage = (GLuint *) malloc(srcWidth * srcHeight * srcDepth
472 for (img = 0; img < srcDepth; img++) {
504 newImage = (GLuint *) malloc(srcWidth * srcHeight * srcDepth
    [all...]
texstore.h 63 GLint srcWidth, GLint srcHeight, GLint srcDepth, \
77 GLint srcWidth, GLint srcHeight, GLint srcDepth,
86 GLint srcWidth, GLint srcHeight, GLint srcDepth,
mipmap.h 36 GLint srcWidth, GLint srcHeight, GLint srcDepth,
texcompress_rgtc.c 108 srcWidth, srcHeight, srcDepth,
155 srcWidth, srcHeight, srcDepth,
203 srcWidth, srcHeight, srcDepth,
257 srcWidth, srcHeight, srcDepth,
texcompress_s3tc.c 182 srcWidth, srcHeight, srcDepth,
235 srcWidth, srcHeight, srcDepth,
288 srcWidth, srcHeight, srcDepth,
340 srcWidth, srcHeight, srcDepth,
mipmap.c     [all...]
  /external/opencv3/modules/imgproc/perf/
perf_moments.cpp 28 const MatDepth srcDepth = get<1>(params);
32 Mat src(srcSize, srcDepth);
  /external/skia/src/images/
SkImageDecoder.cpp 110 SkColorType SkImageDecoder::getPrefColorType(SrcDepth srcDepth, bool srcHasAlpha) const {
113 switch (srcDepth) {
SkImageDecoder_libjpeg.cpp 229 SrcDepth srcDepth = k32Bit_SrcDepth;
231 srcDepth = k8BitGray_SrcDepth;
234 SkColorType colorType = this->getPrefColorType(srcDepth, /*hasAlpha*/ false);
    [all...]
SkImageDecoder_libpng.cpp 563 SrcDepth srcDepth = k32Bit_SrcDepth;
565 srcDepth = k8BitGray_SrcDepth;
570 *colorTypep = this->getPrefColorType(srcDepth, *hasAlphap);
578 if (k8BitGray_SrcDepth != srcDepth) {
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 91 struct gl_renderbuffer_attachment *srcDepth, *srcStencil;
95 srcDepth = &ctx->ReadBuffer->Attachment[BUFFER_DEPTH];
101 st_is_depth_stencil_combined(srcDepth, srcStencil) &&
106 srcRb = st_renderbuffer(srcDepth->Renderbuffer);
268 struct gl_renderbuffer_attachment *srcDepth =
292 st_is_depth_stencil_combined(srcDepth, srcStencil) &&
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES31Ext.spec 15 void glCopyImageSubDataEXT ( 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 )
GLES32.spec 2 void glCopyImageSubData ( 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 )
  /external/skia/include/core/
SkImageDecoder.h 323 enum SrcDepth {
332 the returned bitmap. SrcDepth and hasAlpha reflect the raw data of the
334 srcDepth and hasAlpha, or kUnknown_SkColorType if there is no preference.
336 SkColorType getPrefColorType(SrcDepth, bool hasAlpha) const;
  /frameworks/native/opengl/libs/GLES2/
gl2ext_api.in 58 void API_ENTRY(glCopyImageSubDataOES)(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) {
59 CALL_GL_API(glCopyImageSubDataOES, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth);
295 void API_ENTRY(glCopyImageSubDataEXT)(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) {
296 CALL_GL_API(glCopyImageSubDataEXT, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES31Ext.java 411 // C function void glCopyImageSubDataEXT ( 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 )
428 int srcDepth
    [all...]
GLES32.java 247 // C function void glCopyImageSubData ( 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 )
264 int srcDepth
    [all...]
  /external/opencv/cxcore/src/
cxconvert.cpp 957 int srcdepth = CV_MAT_DEPTH(srctype); local
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES31Ext.cpp 719 /* void glCopyImageSubDataEXT ( 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 ) */
722 (JNIEnv *_env, jobject _this, jint srcName, jint srcTarget, jint srcLevel, jint srcX, jint srcY, jint srcZ, jint dstName, jint dstTarget, jint dstLevel, jint dstX, jint dstY, jint dstZ, jint srcWidth, jint srcHeight, jint srcDepth) {
738 (GLsizei)srcDepth
    [all...]
android_opengl_GLES32.cpp 450 /* void glCopyImageSubData ( 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 ) */
453 (JNIEnv *_env, jobject _this, jint srcName, jint srcTarget, jint srcLevel, jint srcX, jint srcY, jint srcZ, jint dstName, jint dstTarget, jint dstLevel, jint dstX, jint dstY, jint dstZ, jint srcWidth, jint srcHeight, jint srcDepth) {
469 (GLsizei)srcDepth
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp     [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
  /frameworks/native/opengl/libs/
entries.in 107 GL_ENTRY(void, glCopyImageSubData, 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)
108 GL_ENTRY(void, glCopyImageSubDataEXT, 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)
109 GL_ENTRY(void, glCopyImageSubDataOES, 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)
    [all...]

Completed in 9085 milliseconds

1 2 3