Welcome to mirror list, hosted at ThFree Co, Russian Federation.

png_memory_encoder.hpp « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd2c5b632eae48f3ca1ce97febbc4ec9ac651b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "std/cstdint.hpp"
#include "std/vector.hpp"

namespace il
{

void EncodePngToMemory(uint32_t width, uint32_t height,
                       vector<uint8_t> const & rgba,
                       vector<uint8_t> & out);

} // namespace il