skia2/tests/SkSLTypeTest.cpp
Ethan Nicholas 4a5e22a8c8 Further unified error handling between SkSL and DSL
This eliminates the SkSL ErrorReporter class and funnels everything
through the DSL ErrorHandler. Since the DSL error handler can be
changed, this required a number of updates to ensure that things work
properly in the face of custom error handlers. There is probably more
work to be done in that area, but this at least passes all existing
tests.

Change-Id: Iaee27b79fc4ed426c484ccab257c09d28619ead5
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/438116
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: John Stiles <johnstiles@google.com>
2021-08-13 22:26:10 +00:00

36 lines
1.3 KiB
C++

/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <limits>
#include "include/sksl/SkSLErrorReporter.h"
#include "src/gpu/GrCaps.h"
#include "src/sksl/SkSLContext.h"
#include "tests/Test.h"
DEF_TEST(SkSLTypeLimits, r) {
GrShaderCaps caps(GrContextOptions{});
SkSL::TestingOnly_AbortErrorReporter errors;
SkSL::Context context(errors, caps);
using int_limits = std::numeric_limits<int32_t>;
REPORTER_ASSERT(r, context.fTypes.fInt->minimumValue() == int_limits::min());
REPORTER_ASSERT(r, context.fTypes.fInt->maximumValue() == int_limits::max());
using short_limits = std::numeric_limits<int16_t>;
REPORTER_ASSERT(r, context.fTypes.fShort->minimumValue() == short_limits::min());
REPORTER_ASSERT(r, context.fTypes.fShort->maximumValue() == short_limits::max());
using uint_limits = std::numeric_limits<uint32_t>;
REPORTER_ASSERT(r, context.fTypes.fUInt->minimumValue() == uint_limits::min());
REPORTER_ASSERT(r, context.fTypes.fUInt->maximumValue() == uint_limits::max());
using ushort_limits = std::numeric_limits<uint16_t>;
REPORTER_ASSERT(r, context.fTypes.fUShort->minimumValue() == ushort_limits::min());
REPORTER_ASSERT(r, context.fTypes.fUShort->maximumValue() == ushort_limits::max());
}