OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:etc1_uint32
(Results
1 - 5
of
5
) sorted by null
/development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
etc1.h
29
typedef unsigned int
etc1_uint32
;
typedef
46
void etc1_encode_block(const etc1_byte* pIn,
etc1_uint32
validPixelMask, etc1_byte* pOut);
60
etc1_uint32
etc1_get_encoded_data_size(
etc1_uint32
width,
etc1_uint32
height);
69
int etc1_encode_image(const etc1_byte* pIn,
etc1_uint32
width,
etc1_uint32
height,
70
etc1_uint32
pixelSize,
etc1_uint32
stride, etc1_byte* pOut);
81
etc1_uint32
width, etc1_uint32 height
[
all
...]
/frameworks/base/opengl/include/ETC1/
etc1.h
27
typedef unsigned int
etc1_uint32
;
typedef
44
void etc1_encode_block(const etc1_byte* pIn,
etc1_uint32
validPixelMask, etc1_byte* pOut);
58
etc1_uint32
etc1_get_encoded_data_size(
etc1_uint32
width,
etc1_uint32
height);
67
int etc1_encode_image(const etc1_byte* pIn,
etc1_uint32
width,
etc1_uint32
height,
68
etc1_uint32
pixelSize,
etc1_uint32
stride, etc1_byte* pOut);
79
etc1_uint32
width, etc1_uint32 height
[
all
...]
/development/tools/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp
168
etc1_uint32
low, bool second, bool flipped) {
201
etc1_uint32
high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3];
202
etc1_uint32
low = (pIn[4] << 24) | (pIn[5] << 16) | (pIn[6] << 8) | pIn[7];
234
etc1_uint32
high;
235
etc1_uint32
low;
236
etc1_uint32
score; // Lower is more accurate
247
void etc_average_colors_subblock(const etc1_byte* pIn,
etc1_uint32
inMask,
298
static
etc1_uint32
chooseModifier(const etc1_byte* pBaseColors,
299
const etc1_byte* pIn,
etc1_uint32
*pLow, int bitIndex,
301
etc1_uint32
bestScore = ~0
[
all
...]
/frameworks/base/opengl/libs/ETC1/
etc1.cpp
168
etc1_uint32
low, bool second, bool flipped) {
201
etc1_uint32
high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3];
202
etc1_uint32
low = (pIn[4] << 24) | (pIn[5] << 16) | (pIn[6] << 8) | pIn[7];
234
etc1_uint32
high;
235
etc1_uint32
low;
236
etc1_uint32
score; // Lower is more accurate
247
void etc_average_colors_subblock(const etc1_byte* pIn,
etc1_uint32
inMask,
298
static
etc1_uint32
chooseModifier(const etc1_byte* pBaseColors,
299
const etc1_byte* pIn,
etc1_uint32
*pLow, int bitIndex,
301
etc1_uint32
bestScore = ~0
[
all
...]
/development/tools/etc1tool/
etc1tool.cpp
137
etc1_uint32
* pWidth,
etc1_uint32
* pHeight) {
208
for (
etc1_uint32
y = 0; y < height; y++) {
235
etc1_uint32
* pWidth,
etc1_uint32
* pHeight) {
315
etc1_uint32
width = 0;
316
etc1_uint32
height = 0;
317
etc1_uint32
encodedSize = 0;
364
etc1_uint32
outWidth;
365
etc1_uint32
outHeight
[
all
...]
Completed in 736 milliseconds