2021-11-30 17:02:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Google LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tests/Test.h"
|
|
|
|
|
2022-04-11 15:48:46 +00:00
|
|
|
#include "include/gpu/graphite/BackendTexture.h"
|
|
|
|
#include "include/gpu/graphite/Context.h"
|
|
|
|
#include "include/gpu/graphite/mtl/MtlTypes.h"
|
2021-11-30 17:02:30 +00:00
|
|
|
|
|
|
|
#import <Metal/Metal.h>
|
|
|
|
|
2022-04-07 20:08:04 +00:00
|
|
|
using namespace skgpu::graphite;
|
2021-11-30 17:02:30 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
const SkISize kSize = {16, 16};
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_GRAPHITE_TEST_FOR_CONTEXTS(MtlBackendTextureTest, reporter, context) {
|
2022-04-07 20:08:04 +00:00
|
|
|
MtlTextureInfo textureInfo;
|
2021-11-30 17:02:30 +00:00
|
|
|
textureInfo.fSampleCount = 1;
|
|
|
|
textureInfo.fLevelCount = 1;
|
|
|
|
textureInfo.fFormat = MTLPixelFormatRGBA8Unorm;
|
|
|
|
textureInfo.fStorageMode = MTLStorageModePrivate;
|
|
|
|
textureInfo.fUsage = MTLTextureUsageShaderRead;
|
|
|
|
|
|
|
|
// TODO: For now we are just testing the basic case of RGBA single sample because that is what
|
|
|
|
// we've added to the backend. However, once we expand the backend support to handle all the
|
|
|
|
// formats this test should iterate over a large set of combinations. See the Ganesh
|
|
|
|
// MtlBackendAllocationTest for example of doing this.
|
|
|
|
|
|
|
|
auto beTexture = context->createBackendTexture(kSize, textureInfo);
|
|
|
|
REPORTER_ASSERT(reporter, beTexture.isValid());
|
|
|
|
context->deleteBackendTexture(beTexture);
|
|
|
|
|
|
|
|
// It should also pass if we set the usage to be a render target
|
|
|
|
textureInfo.fUsage |= MTLTextureUsageRenderTarget;
|
|
|
|
beTexture = context->createBackendTexture(kSize, textureInfo);
|
|
|
|
REPORTER_ASSERT(reporter, beTexture.isValid());
|
|
|
|
context->deleteBackendTexture(beTexture);
|
|
|
|
|
2022-03-25 20:27:50 +00:00
|
|
|
// It should fail with a format that isn't one of our supported formats
|
|
|
|
textureInfo.fFormat = MTLPixelFormatRGB9E5Float;
|
2021-11-30 17:02:30 +00:00
|
|
|
beTexture = context->createBackendTexture(kSize, textureInfo);
|
|
|
|
REPORTER_ASSERT(reporter, !beTexture.isValid());
|
|
|
|
context->deleteBackendTexture(beTexture);
|
|
|
|
|
|
|
|
// It should fail with a sample count greater than 1
|
|
|
|
textureInfo.fFormat = MTLPixelFormatRGBA8Unorm;
|
|
|
|
textureInfo.fSampleCount = 4;
|
|
|
|
beTexture = context->createBackendTexture(kSize, textureInfo);
|
|
|
|
REPORTER_ASSERT(reporter, !beTexture.isValid());
|
|
|
|
context->deleteBackendTexture(beTexture);
|
|
|
|
}
|