HomeSort by relevance Sort by last modified time
    Searched defs:Scissor (Results 1 - 8 of 8) sorted by null

  /frameworks/base/libs/hwui/renderstate/
Scissor.cpp 16 #include "renderstate/Scissor.h"
23 Scissor::Scissor()
31 bool Scissor::setEnabled(bool enabled) {
44 bool Scissor::set(GLint x, GLint y, GLint width, GLint height) {
74 void Scissor::reset() {
78 void Scissor::invalidate() {
84 void Scissor::dump() {
85 ALOGD("Scissor: enabled %d, %d %d %d %d",
Scissor.h 25 class Scissor {
34 Scissor();
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 66 /// SCISSOR. If LLVM were updated to read base types (which it probably
68 /// type anyway) then we could eliminate the SCISSOR.
80 enum InfoKind { VFPtr, VBPtr, Field, Base, VBase, Scissor } Kind;
462 // before the nvsize and set the scissor offset to that, instead of the
476 Members.push_back(MemberInfo(ScissorOffset, MemberInfo::Scissor, nullptr,
536 // Only members with data and the scissor can cut into tail padding.
537 if (!Member->Data && Member->Kind != MemberInfo::Scissor)
    [all...]
  /external/mesa3d/src/mesa/main/
attrib.c 51 #include "scissor.h"
118 GLboolean Scissor;
312 attr->Scissor = ctx->Scissor.Enabled;
409 memcpy( attr, &ctx->Scissor, sizeof(struct gl_scissor_attrib) );
599 TEST_AND_UPDATE(ctx->Scissor.Enabled, enable->Scissor, GL_SCISSOR_TEST);
1202 const struct gl_scissor_attrib *scissor; local
    [all...]
dd.h 510 /** Define the scissor box */
511 void (*Scissor)(struct gl_context *ctx, GLint x, GLint y, GLsizei w, GLsizei h);
    [all...]
mtypes.h     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 58 #include "main/scissor.h"
129 struct gl_scissor_attrib Scissor;
611 save->Scissor = ctx->Scissor; /* struct copy */
929 _mesa_set_enable(ctx, GL_SCISSOR_TEST, save->Scissor.Enabled);
930 _mesa_Scissor(save->Scissor.X, save->Scissor.Y,
931 save->Scissor.Width, save->Scissor.Height);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_icd.h 226 void (GLAPIENTRY * Scissor)(GLint, GLint, GLsizei, GLsizei);

Completed in 152 milliseconds