Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

optimize resize bilinear and compress font data #5200

Merged
merged 15 commits into from
Dec 11, 2023
1 change: 1 addition & 0 deletions src/layer/x86/padding_x86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#include "padding_x86.h"

#include <stdint.h>
#if __SSE2__
#include <emmintrin.h>
#if __AVX__
Expand Down
1 change: 1 addition & 0 deletions src/layer/x86/x86_usability.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#ifndef X86_USABILITY_H
#define X86_USABILITY_H

#include <stdint.h>
#if __SSE2__
#include <emmintrin.h>
#if __SSE4_1__
Expand Down
Loading