Skip to content

Commit

Permalink
Fix headers in graphics_util.cpp
Browse files Browse the repository at this point in the history
Put self-header at the top, and C++ std headers after, before project-
wide headers.
  • Loading branch information
anishmgoyal committed Jun 10, 2024
1 parent f9ac2fb commit 9f6e6a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ppx/graphics_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "ppx/graphics_util.h"

#include <algorithm>

#include "ppx/generate_mip_shader_VK.h"
#include "ppx/generate_mip_shader_DX.h"
#include "ppx/graphics_util.h"
#include "ppx/bitmap.h"
#include "ppx/fs.h"
#include "ppx/mipmap.h"
Expand Down

0 comments on commit 9f6e6a6

Please sign in to comment.