From 94a02b326d8516145c11d26c3263a5962ad66694 Mon Sep 17 00:00:00 2001 From: Andy Wolff Date: Thu, 23 Apr 2026 10:49:51 -0700 Subject: [PATCH] Add copyright to source files in simple_shader and simple_sdf --- simple_sdf/lib/main.dart | 4 ++++ simple_sdf/shaders/SDF.frag | 4 ++++ simple_sdf/test/widget_test.dart | 4 ++++ simple_shader/lib/main.dart | 4 ++++ simple_shader/shaders/simple.frag | 4 ++++ simple_shader/test/widget_test.dart | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/simple_sdf/lib/main.dart b/simple_sdf/lib/main.dart index 4a1bf38c446..214c68783c8 100644 --- a/simple_sdf/lib/main.dart +++ b/simple_sdf/lib/main.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:ui' as ui; import 'package:flutter/material.dart'; diff --git a/simple_sdf/shaders/SDF.frag b/simple_sdf/shaders/SDF.frag index 32722266286..e854a22720d 100644 --- a/simple_sdf/shaders/SDF.frag +++ b/simple_sdf/shaders/SDF.frag @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + #version 460 core #include diff --git a/simple_sdf/test/widget_test.dart b/simple_sdf/test/widget_test.dart index 794023811a2..50e51b28c05 100644 --- a/simple_sdf/test/widget_test.dart +++ b/simple_sdf/test/widget_test.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter_test/flutter_test.dart'; import 'package:simple_sdf/main.dart'; diff --git a/simple_shader/lib/main.dart b/simple_shader/lib/main.dart index e314f91bfe0..dea7caa88b0 100644 --- a/simple_shader/lib/main.dart +++ b/simple_shader/lib/main.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:ui' as ui; import 'package:flutter/material.dart'; diff --git a/simple_shader/shaders/simple.frag b/simple_shader/shaders/simple.frag index 20075c9eedc..8ca802f0444 100644 --- a/simple_shader/shaders/simple.frag +++ b/simple_shader/shaders/simple.frag @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + #version 460 core #include diff --git a/simple_shader/test/widget_test.dart b/simple_shader/test/widget_test.dart index 97c66d107c9..8b876a5efbc 100644 --- a/simple_shader/test/widget_test.dart +++ b/simple_shader/test/widget_test.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter_test/flutter_test.dart'; import 'package:simple_shader/main.dart';