Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
JBig2_Image.cpp File Reference

(3dce9b5818576f04ce21cec4b3686eda012e5b65)

#include "core/fxcodec/jbig2/JBig2_Image.h"
#include <limits.h>
#include <string.h>
#include <algorithm>
#include <memory>
#include "core/fxcrt/fx_2d_size.h"
#include "core/fxcrt/fx_coordinates.h"
#include "core/fxcrt/fx_memory.h"
#include "core/fxcrt/fx_safe_types.h"
#include "third_party/base/check.h"
+ Include dependency graph for JBig2_Image.cpp:

Go to the source code of this file.

Macros

#define JBIG2_GETDWORD(buf)
 
#define JBIG2_PUTDWORD(buf, val)
 

Macro Definition Documentation

◆ JBIG2_GETDWORD

#define JBIG2_GETDWORD ( buf)
Value:
((static_cast<uint32_t>((buf)[0]) << 24) | \
(static_cast<uint32_t>((buf)[1]) << 16) | \
(static_cast<uint32_t>((buf)[2]) << 8) | \
(static_cast<uint32_t>((buf)[3]) << 0))
GLenum GLuint GLenum GLsizei const GLchar * buf

Definition at line 21 of file JBig2_Image.cpp.

◆ JBIG2_PUTDWORD

#define JBIG2_PUTDWORD ( buf,
val )
Value:
((buf)[0] = static_cast<uint8_t>((val) >> 24), \
(buf)[1] = static_cast<uint8_t>((val) >> 16), \
(buf)[2] = static_cast<uint8_t>((val) >> 8), \
(buf)[3] = static_cast<uint8_t>((val) >> 0))
GLuint GLfloat * val

Definition at line 27 of file JBig2_Image.cpp.