blob: 2b2a996d0b0149b7b7a4088ea4b2a7af84e5171b [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.clockwork.displayoffload;
import com.android.clockwork.displayoffload.TextPreprocessor.ITextPreprocessorNative;
import java.nio.ByteBuffer;
import java.util.ArrayList;
class FakeTextPreprocessorNative implements ITextPreprocessorNative {
@Override
public void shapeText(String text, float fontSize, int fontid, int fontIndex,
ByteBuffer fontData, ArrayList<Integer> glyphs, ArrayList<Float> positions,
boolean useTabularNum) {
glyphs.add(0);
positions.add(0.0f);
positions.add(0.0f);
}
@Override
public byte[] subsetTtf(ByteBuffer fontData, int fontIndex, int[] glyphIds,
int[] codepoints) {
return new byte[10];
}
}