Lines Matching refs:size
51 ** Network size parameters
72 ** Because of their size, they may not automatically fit in the buffer.
76 #define __GLX_BEGIN_VARIABLE(opcode,size) \
77 if (pc + (size) > gc->bufEnd) { \
80 __GLX_PUT_SHORT(0,size); \
83 #define __GLX_BEGIN_VARIABLE_LARGE(opcode,size) \
85 __GLX_PUT_LONG(0,size); \
88 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL(opcode,size) \
89 if (pc + (size) > gc->bufEnd) { \
92 __GLX_PUT_SHORT(0,size); \
98 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL(opcode,size) \
100 __GLX_PUT_LONG(0,size); \
106 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL_3D(opcode,size) \
107 if (pc + (size) > gc->bufEnd) { \
110 __GLX_PUT_SHORT(0,size); \
116 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL_3D(opcode,size) \
118 __GLX_PUT_LONG(0,size); \
125 ** Fixed size command support macro. This macro is used by calls that
131 #define __GLX_BEGIN(opcode,size) \
132 __GLX_PUT_SHORT(0,size); \
143 #define __GLX_END(size) \
144 pc += size; \