HomeSort by relevance Sort by last modified time
    Searched defs:InputMode (Results 1 - 4 of 4) sorted by null

  /external/skia/src/gpu/effects/
GrConstColorProcessor.h 19 enum class InputMode { kIgnore = 0, kLast = 2, kModulateA = 2, kModulateRGBA = 1 };
21 static const int kInputModeCnt = (int)InputMode::kLast + 1;
23 static OptimizationFlags OptFlags(GrColor4f color, InputMode mode) {
25 if (mode != InputMode::kIgnore) {
36 case InputMode::kIgnore:
38 case InputMode::kModulateA:
40 case InputMode::kModulateRGBA:
47 InputMode mode() const { return fMode; }
48 static std::unique_ptr<GrFragmentProcessor> Make(GrColor4f color, InputMode mode) {
56 GrConstColorProcessor(GrColor4f color, InputMode mode
    [all...]
  /external/skqp/src/gpu/effects/
GrConstColorProcessor.h 19 enum class InputMode { kIgnore = 0, kLast = 2, kModulateA = 2, kModulateRGBA = 1 };
21 static const int kInputModeCnt = (int)InputMode::kLast + 1;
23 static OptimizationFlags OptFlags(GrColor4f color, InputMode mode) {
25 if (mode != InputMode::kIgnore) {
36 case InputMode::kIgnore:
38 case InputMode::kModulateA:
40 case InputMode::kModulateRGBA:
47 InputMode mode() const { return fMode; }
48 static std::unique_ptr<GrFragmentProcessor> Make(GrColor4f color, InputMode mode) {
56 GrConstColorProcessor(GrColor4f color, InputMode mode
    [all...]
  /frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
HeifWriter.java 79 private final @InputMode int mInputMode;
121 public @interface InputMode {}
131 private final @InputMode int mInputMode;
145 * @param inputMode Input mode for this writer, must be one of {@link #INPUT_MODE_BUFFER},
149 int width, int height, @InputMode int inputMode) {
150 this(path, null, width, height, inputMode);
159 * @param inputMode Input mode for this writer, must be one of {@link #INPUT_MODE_BUFFER},
163 int width, int height, @InputMode int inputMode) {
    [all...]
HeifEncoder.java 81 private final @InputMode int mInputMode;
122 public @interface InputMode {}
168 * @param inputMode The input type of this encoding session.
174 int quality, @InputMode int inputMode,
177 ", useGrid: " + useGrid + ", quality: " + quality + ", inputMode: " + inputMode);
206 mInputMode = inputMode;
221 (inputMode == INPUT_MODE_SURFACE) || (inputMode == INPUT_MODE_BITMAP)
    [all...]

Completed in 70 milliseconds