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 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'main' of github.com:flutter/engine into use_r8_everywhere
  • Loading branch information
jonahwilliams committed Feb 13, 2024
commit 815c2ee9dd567cf8d9f548dcab3d6bcbb6a24f92
5 changes: 5 additions & 0 deletions impeller/renderer/backend/gles/capabilities_gles.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,13 @@ PixelFormat CapabilitiesGLES::GetDefaultDepthStencilFormat() const {
return PixelFormat::kD24UnormS8Uint;
}

<<<<<<< HEAD
PixelFormat CapabilitiesGLES::GetDefaultGlyphAtlasFormat() const {
return default_glyph_atlas_format_;
=======
bool CapabilitiesGLES::IsANGLE() const {
return is_angle_;
>>>>>>> 9b183870ff6ce2f928e86b45d82e06ddcef28423
}

} // namespace impeller
2 changes: 1 addition & 1 deletion impeller/renderer/backend/gles/capabilities_gles.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class CapabilitiesGLES final
bool supports_decal_sampler_address_mode_ = false;
bool supports_offscreen_msaa_ = false;
bool supports_implicit_msaa_ = false;

bool is_angle_ = false;
PixelFormat default_glyph_atlas_format_ = PixelFormat::kUnknown;
};

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.