Lines Matching refs:target
328 static const char* getTargetName (EGLint target)
330 switch (target)
374 MovePtr<ImageSource> getImageSource (EGLint target, GLenum internalFormat, GLenum format, GLenum type, bool useTexLevel0)
376 switch (target)
386 return createTextureImageSource(target, internalFormat, format, type, useTexLevel0);
402 CreateImageGLES2 (EglTestContext& eglTestCtx, EGLint target, GLenum internalFormat, GLenum format, GLenum type, bool useTexLevel0 = false)
403 : ImageTestCase (eglTestCtx, ApiType::es(2, 0), string("create_image_gles2_") + getTargetName(target) + "_" + getStorageName(internalFormat) + (useTexLevel0 ? "_level0_only" : ""), "Create EGLImage from GLES2 object")
404 , m_source (getImageSource(target, internalFormat, format, type, useTexLevel0))
456 static const char* getTargetName (GLenum target)
458 switch (target)
468 ImageTargetGLES2 (EglTestContext& eglTestCtx, GLenum target)
469 : ImageTestCase (eglTestCtx, ApiType::es(2, 0), string("image_target_gles2_") + getTargetName(target), "Use EGLImage as GLES2 object")
470 , m_target (target)