Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Prev Previous commit
Next Next commit
++
  • Loading branch information
jonahwilliams committed Nov 10, 2022
commit ff9a0fc18b3a1e5df8d1c17ed9a25c00e48850b4
4 changes: 2 additions & 2 deletions lib/ui/painting/fragment_shader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ReusableFragmentShader::ReusableFragmentShader(
(float_count + 2 * sampler_count) * sizeof(float))),
samplers_(sampler_count),
float_count_(float_count) {
std::cerr << ((void*) this) << std::endl;
std::cerr << ((void*)this) << std::endl;
std::cerr << "sampler_count: " << sampler_count << std::endl;
}

Expand All @@ -57,7 +57,7 @@ Dart_Handle ReusableFragmentShader::Create(Dart_Handle wrapper,
}

bool ReusableFragmentShader::ValidateSamplers(Dart_Handle wrapper) {
std::cerr << ((void*) this) << std::endl;
std::cerr << ((void*)this) << std::endl;
for (auto i = 0u; i < samplers_.size(); i += 1) {
if (samplers_[i] == nullptr) {
std::cerr << "Missing Sampler!" << std::endl;
Expand Down