/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fBufferCopyTests.cpp | 53 deUint32 srcTarget, in BasicBufferCopyCase() 64 , m_srcTarget (srcTarget) in BasicBufferCopyCase() 153 deUint32 srcTarget, in SingleBufferCopyCase() 158 , m_srcTarget (srcTarget) in SingleBufferCopyCase() 265 deUint32 srcTarget = bufferTargets[srcTargetNdx]; in init() local 270 string name = string(getBufferTargetName(srcTarget)) + "_" + getBufferTargetName(dstTarget); in init() 272 basicGroup->addChild(new BasicBufferCopyCase(m_context, name.c_str(), "", srcTarget, size, hint, dstTarget, size, hint, 0, 0, size, verify)); in init() 304 deUint32 srcTarget = GL_COPY_READ_BUFFER; in init() local 310 srcTarget, cases[ndx].srcSize, hint, in init() 329 deUint32 srcTarget in init() local 50 BasicBufferCopyCase(Context& context, const char* name, const char* desc, deUint32 srcTarget, int srcSize, deUint32 srcHint, deUint32 dstTarget, int dstSize, deUint32 dstHint, int copySrcOffset, int copyDstOffset, int copySize, VerifyType verifyType) BasicBufferCopyCase() argument 150 SingleBufferCopyCase(Context& context, const char* name, const char* desc, deUint32 srcTarget, deUint32 dstTarget, deUint32 hint, VerifyType verifyType) SingleBufferCopyCase() argument [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | copyimage.c | 84 * * if either <srcTarget> or <dstTarget> in prepare_target_err() 582 _mesa_CopyImageSubData_no_error(GLuint srcName, GLenum srcTarget, GLint srcLevel, in _mesa_CopyImageSubData_no_error() argument 593 prepare_target(ctx, srcName, srcTarget, srcLevel, srcZ, &srcTexImage, in _mesa_CopyImageSubData_no_error() 605 _mesa_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, in _mesa_CopyImageSubData() argument 625 srcName, _mesa_enum_to_string(srcTarget), srcLevel, in _mesa_CopyImageSubData() 637 if (!prepare_target_err(ctx, srcName, srcTarget, srcLevel, srcZ, srcDepth, in _mesa_CopyImageSubData() 706 if (!check_region_bounds(ctx, srcTarget, srcTexImage, srcRenderbuffer, in _mesa_CopyImageSubData() 741 _mesa_CopyImageSubDataNV_no_error(GLuint srcName, GLenum srcTarget, GLint srcLevel, in _mesa_CopyImageSubDataNV_no_error() argument 752 prepare_target(ctx, srcName, srcTarget, srcLevel, srcZ, &srcTexImage, in _mesa_CopyImageSubDataNV_no_error() 764 _mesa_CopyImageSubDataNV(GLuint srcName, GLenum srcTarget, GLin argument [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
H A D | RangeTreeFactorizer.java | 144 public void visit(DfaNode source, DfaEdge srcEdge, DfaNode srcTarget) { in visit() argument 153 recursivelyMerge(srcTarget, dstTarget, path.extendByMask(dstMask)); in visit() 167 new MergingVisitor(path).recurse(srcTarget, extraMask); in visit()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | validationES32.cpp | 139 GLenum srcTarget, in ValidateCopyImageSubData() 160 return ValidateCopyImageSubDataBase(context, entryPoint, srcName, srcTarget, srcLevel, srcX, 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 | 21 void copyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, \
|
H A D | validationES32_autogen.h | 53 GLenum srcTarget,
|
H A D | validationESEXT.cpp | 869 GLenum srcTarget, in ValidateCopyImageSubDataEXT() 890 return ValidateCopyImageSubDataBase(context, entryPoint, srcName, srcTarget, srcLevel, srcX, in ValidateCopyImageSubDataEXT() 898 GLenum srcTarget, in ValidateCopyImageSubDataOES() 919 return ValidateCopyImageSubDataBase(context, entryPoint, srcName, srcTarget, srcLevel, srcX, 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/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fCopyImageTests.cpp | 2114 const deUint32 srcTarget = srcInfo.getTarget(); 2120 const bool srcIsCube = srcTarget == GL_TEXTURE_CUBE_MAP; 2380 const deUint32 srcTarget = targets[srcTargetNdx]; 2381 const bool srcIs3D = srcTarget == GL_TEXTURE_2D_ARRAY || srcTarget == GL_TEXTURE_3D; 2383 if (glu::isCompressedFormat(srcFormat) && srcTarget == GL_RENDERBUFFER) 2386 if (srcTarget == GL_RENDERBUFFER && !isColorRenderable(srcFormat)) 2406 const string targetTestName = string(targetToName(srcTarget)) + "_to_" + targetToName(dstTarget); 2411 const IVec3 srcSize = getTestedSize(srcTarget, srcFormat, targetSize); 2415 ImageInfo(srcFormat, srcTarget, srcSiz [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_3_2_autogen.cpp | 179 GLenum srcTarget, in GL_CopyImageSubData() 196 "context = %d, srcName = %u, srcTarget = %s, srcLevel = %d, srcX = %d, srcY = %d, srcZ = " in GL_CopyImageSubData() 199 CID(context), srcName, GLenumToString(GLenumGroup::CopyBufferSubDataTarget, srcTarget), in GL_CopyImageSubData() 210 srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, in GL_CopyImageSubData() 214 context->copyImageSubData(srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, in GL_CopyImageSubData() 218 ANGLE_CAPTURE(CopyImageSubData, isCallValid, context, srcName, srcTarget, srcLevel, srcX, 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 | 29 GLenum srcTarget,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
H A D | RendererD3D.h | 238 gl::TextureTarget srcTarget,
|
/third_party/mesa3d/include/GL/ |
H A D | glxext.h | 539 typedef void ( *PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 541 void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
H A D | wglext.h | 664 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 666 BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
/third_party/openGLES/api/GL/ |
H A D | glxext.h | 524 typedef void ( *PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 526 void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
H A D | wglext.h | 645 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 647 BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
/third_party/skia/third_party/externals/swiftshader/include/GL/ |
H A D | glxext.h | 532 typedef void ( *PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 534 void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
H A D | wglext.h | 659 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 661 BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
/third_party/skia/third_party/externals/opengl-registry/api/GL/ |
H A D | glxext.h | 532 typedef void ( *PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 534 void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
H A D | wglext.h | 659 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 661 BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
/third_party/skia/third_party/externals/angle2/src/third_party/khronos/GL/ |
H A D | wglext.h | 649 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); 651 BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | capture_gles_3_2_autogen.h | 54 GLenum srcTarget,
|
H A D | FrameCapture.cpp | 4361 GLenum srcTarget = call.params.getParam("srcTarget", ParamType::TGLenum, 1).value.GLenumVal; in copyCompressedTextureData() local 4367 ASSERT(srcTarget == GL_TEXTURE_2D || srcTarget == GL_TEXTURE_2D_ARRAY || in copyCompressedTextureData() 4368 srcTarget == GL_TEXTURE_3D || srcTarget == GL_TEXTURE_CUBE_MAP); in copyCompressedTextureData() 4666 GLenum srcTarget = call.params.getParam("srcTarget", ParamType::TGLenum, 1).value.GLenumVal; in updateCopyImageSubData() local 4667 switch (srcTarget) in updateCopyImageSubData() 4688 ERR() << "Unhandled srcTarget in updateCopyImageSubData() 6532 GLenum srcTarget = call.params.getParam("srcTarget", ParamType::TGLenum, 1).value.GLenumVal; copyCachedTextureLevel() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | Renderer9.h | 210 gl::TextureTarget srcTarget,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Renderer11.cpp | 2642 gl::TextureTarget srcTarget, in copyTexture() 2670 if (srcTarget == gl::TextureTarget::_2D || srcTarget == gl::TextureTarget::_3D) in copyTexture() 2672 gl::ImageIndex sourceIndex = gl::ImageIndex::MakeFromTarget(srcTarget, sourceLevel, 1); in copyTexture() 2694 else if (srcTarget == gl::TextureTarget::_2DArray) in copyTexture() 2778 GLenum sourceFormat = source->getFormat(srcTarget, sourceLevel).info->format; in copyTexture() 2639 copyTexture(const gl::Context *context, const gl::Texture *source, GLint sourceLevel, gl::TextureTarget srcTarget, const gl::Box &sourceBox, GLenum destFormat, GLenum destType, const gl::Offset &destOffset, TextureStorage *storage, gl::TextureTarget destTarget, GLint destLevel, bool unpackFlipY, bool unpackPremultiplyAlpha, bool unpackUnmultiplyAlpha) copyTexture() argument
|
H A D | Renderer11.h | 168 gl::TextureTarget srcTarget,
|