Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions impeller/fixtures/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,6 @@
import("//flutter/impeller/tools/impeller.gni")
import("//flutter/testing/testing.gni")

if (impeller_enable_compute) {
impeller_shaders("shader_subgroup_fixtures") {
enable_opengles = false
name = "subgroup_fixtures"

# Only need 2.1 for desktop. Running on iOS would require 2.4
metal_version = "2.1"

shaders = [
"cubic_to_quads.comp",
"quad_polyline.comp",
]
}
}

impeller_shaders("shader_fixtures") {
name = "fixtures"

Expand Down Expand Up @@ -87,12 +72,10 @@ test_fixtures("file_fixtures") {
"bay_bridge.jpg",
"blue_noise.png",
"boston.jpg",
"cubic_to_quads.comp",
"embarcadero.jpg",
"flutter_logo_baked.glb",
"kalimba.jpg",
"multiple_stages.hlsl",
"quad_polyline.comp",
"resources_limit.vert",
"sample.comp",
"sample.frag",
Expand Down Expand Up @@ -136,8 +119,4 @@ group("fixtures") {
":scene_fixtures",
":shader_fixtures",
]

if (impeller_enable_compute) {
public_deps += [ ":shader_subgroup_fixtures" ]
}
}
66 changes: 0 additions & 66 deletions impeller/fixtures/cubic_to_quads.comp

This file was deleted.

308 changes: 0 additions & 308 deletions impeller/fixtures/golden_paths.h

Large diffs are not rendered by default.

73 changes: 0 additions & 73 deletions impeller/fixtures/quad_polyline.comp

This file was deleted.

4 changes: 0 additions & 4 deletions impeller/playground/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ impeller_component("playground") {
"//third_party/imgui:imgui_glfw",
]

if (impeller_enable_compute) {
public_deps += [ "../fixtures:shader_subgroup_fixtures" ]
}

if (is_mac) {
frameworks = [
"AppKit.framework",
Expand Down
4 changes: 0 additions & 4 deletions impeller/playground/backend/metal/playground_impl_mtl.mm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#include "impeller/entity/mtl/framebuffer_blend_shaders.h"
#include "impeller/entity/mtl/modern_shaders.h"
#include "impeller/fixtures/mtl/fixtures_shaders.h"
#include "impeller/fixtures/mtl/subgroup_fixtures_shaders.h"
#include "impeller/playground/imgui/mtl/imgui_shaders.h"
#include "impeller/renderer/backend/metal/context_mtl.h"
#include "impeller/renderer/backend/metal/formats_mtl.h"
Expand All @@ -44,9 +43,6 @@
impeller_framebuffer_blend_shaders_length),
std::make_shared<fml::NonOwnedMapping>(
impeller_fixtures_shaders_data, impeller_fixtures_shaders_length),
std::make_shared<fml::NonOwnedMapping>(
impeller_subgroup_fixtures_shaders_data,
impeller_subgroup_fixtures_shaders_length),
std::make_shared<fml::NonOwnedMapping>(impeller_imgui_shaders_data,
impeller_imgui_shaders_length),
std::make_shared<fml::NonOwnedMapping>(impeller_scene_shaders_data,
Expand Down
Loading