You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for GL_EXT_copy_image which allows
image data transfer between image objects.
This is implemented by using the vkCmdCopyImage
API call.
Bug: angleproject:3593
Test: dEQP-GLES31.functional.copy_image.*
Change-Id: I30a34a8711b5d2e5834064d7453e03d6ec0df478
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2393955
Commit-Queue: Brandon Schade <b.schade@samsung.com>
Commit-Queue: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>
MSG kInvalidCompressedRegionSize = "Invalid region for compressed texture format.";
194
197
MSG kInvalidConstantColor = "CONSTANT_COLOR (or ONE_MINUS_CONSTANT_COLOR) and CONSTANT_ALPHA (or ONE_MINUS_CONSTANT_ALPHA) cannot be used together as source and destination color factors in the blend function.";
195
198
MSG kInvalidCopyCombination = "Invalid copy texture format combination.";
196
199
MSG kInvalidCoverageComponents = "components is not one of GL_RGB, GL_RGBA, GL_ALPHA or GL_NONE.";
@@ -395,6 +398,7 @@ MSG kNonPositiveDrawTextureDimension = "Both width and height argument of drawn
395
398
MSG kNoProgramBinaryFormats = "No program binary formats supported.";
396
399
MSG kNoReadFramebuffer = "No active read framebuffer.";
397
400
MSG kNoSampleAlphaToCoveragesLimitation = "Current renderer doesn't support alpha-to-coverage.";
401
+
MSG kNotTextureComplete = "The texture is not complete.";
398
402
MSG kNoTransformArray = "No transform array given.";
399
403
MSG kNoTransformFeedbackOutputVariables = "The active program has specified no output variables to record.";
400
404
MSG kNoZeroDivisor = "At least one enabled attribute must have a divisor of zero.";
0 commit comments