Make SkSurfaceProps non-optional for SDCs and SkSpecialImages

This ensures we don't lose the original SkSurfaceProps when creating
image filters, etc.

Bug: skia:11396
Change-Id: I6b412361c1005138278a1396faa7f7e069ec7eb2
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/397291
Commit-Queue: Chris Dalton <csmartdalton@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Reviewed-by: Michael Ludwig <michaelludwig@google.com>
diff --git a/tests/BulkRectTest.cpp b/tests/BulkRectTest.cpp
index 8e37aa7..d25f542 100644
--- a/tests/BulkRectTest.cpp
+++ b/tests/BulkRectTest.cpp
@@ -16,7 +16,8 @@
 
 static std::unique_ptr<GrSurfaceDrawContext> new_RTC(GrRecordingContext* rContext) {
     return GrSurfaceDrawContext::Make(
-            rContext, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kExact, {128, 128});
+            rContext, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kExact, {128, 128},
+            SkSurfaceProps());
 }
 
 static sk_sp<GrSurfaceProxy> create_proxy(GrRecordingContext* rContext) {